.hero-eventos {
    min-height: 640px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(255, 196, 0, 0.28),
            transparent 22%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(255, 90, 0, 0.3),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #361000
        );
}

.hero-eventos__contenido {
    max-width: 820px;
}

.hero-eventos h1 {
    margin: 16px 0 20px;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
}

.hero-eventos p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    line-height: 1.75;
}

.servicios-eventos {
    padding: 80px 0;
    background-color: #ffffff;
}

.titulo-eventos {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.titulo-eventos > span {
    color: var(--pyro-naranja);
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.titulo-eventos h2 {
    margin: 10px 0 14px;
    font-size: 2.2rem;
    font-weight: 800;
}

.titulo-eventos p {
    color: #737373;
    line-height: 1.7;
}

.grid-servicios-eventos {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.grid-servicios-eventos article {
    padding: 28px;
    border: 1px solid #e6e6e6;
    border-radius: 17px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.grid-servicios-eventos article > div {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #dc3f00,
            var(--pyro-naranja)
        );
    font-size: 1.4rem;
}

.grid-servicios-eventos h3 {
    margin: 20px 0 11px;
    font-size: 1.15rem;
    font-weight: 800;
}

.grid-servicios-eventos p {
    margin: 0;
    color: #727272;
    font-size: 0.88rem;
    line-height: 1.65;
}

.seccion-formulario-evento {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.cotizacion-evento-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(0, 1.2fr);
    align-items: start;
    gap: 45px;
}

.introduccion-formulario-evento {
    position: sticky;
    top: 30px;
    padding: 35px;
    border-radius: 22px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 196, 0, 0.2),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            #111111,
            #321000
        );
}

.introduccion-formulario-evento h2 {
    margin: 12px 0 15px;
    font-size: 2.2rem;
    font-weight: 800;
}

.introduccion-formulario-evento > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.pasos-evento {
    display: grid;
    gap: 22px;
    margin-top: 35px;
}

.pasos-evento > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pasos-evento > div > span {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #181818;
    background-color: var(--pyro-amarillo);
    font-weight: bold;
}

.pasos-evento strong {
    display: block;
    margin-bottom: 5px;
}

.pasos-evento p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.83rem;
    line-height: 1.5;
}

.formulario-evento-publico {
    padding: 35px;
    border: 1px solid #e2e2e2;
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.formulario-evento__encabezado {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9e9e9;
}

.formulario-evento__encabezado h2 {
    margin: 0 0 6px;
    font-size: 1.55rem;
    font-weight: 800;
}

.formulario-evento__encabezado p {
    margin: 0;
    color: #777777;
}

.grid-campos-evento {
    display: grid;
    gap: 20px;
}

.grid-campos-evento--2 {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.campo-evento {
    margin-bottom: 20px;
}

.campo-evento label {
    display: block;
    margin-bottom: 8px;
    color: #303030;
    font-size: 0.86rem;
    font-weight: bold;
}

.campo-evento input,
.campo-evento select,
.campo-evento textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 11px;
    outline: none;
    background-color: #fafafa;
    font-family: Arial, Helvetica, sans-serif;
}

.campo-evento input,
.campo-evento select {
    min-height: 51px;
    padding: 12px 14px;
}

.campo-evento textarea {
    padding: 14px;
    resize: vertical;
    line-height: 1.6;
}

.campo-evento input:focus,
.campo-evento select:focus,
.campo-evento textarea:focus {
    border-color: var(--pyro-naranja);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
}

.campo-evento > span {
    display: block;
    margin-top: 7px;
    color: #ba3030;
    font-size: 0.78rem;
}

.aviso-formulario-evento {
    margin: 15px 0 0;
    color: #858585;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.confirmacion-evento {
    min-height: 750px;
    display: grid;
    place-items: center;
    padding: 70px 0;
    background-color: #f3f4f6;
}

.confirmacion-evento__tarjeta {
    max-width: 800px;
    margin: auto;
    padding: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.confirmacion-evento__icono {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1aaa5c,
            #32cf79
        );
    font-size: 2.5rem;
}

.confirmacion-evento__tarjeta > span {
    color: #1b9954;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.confirmacion-evento h1 {
    margin: 12px 0;
    font-size: 2.5rem;
    font-weight: 800;
}

.confirmacion-evento__tarjeta > p {
    max-width: 620px;
    margin: 0 auto;
    color: #707070;
    line-height: 1.7;
}

.folio-evento {
    display: inline-block;
    margin: 25px 0;
    padding: 14px 24px;
    border: 1px dashed var(--pyro-naranja);
    border-radius: 12px;
    background-color: #fff6ea;
}

.folio-evento span,
.folio-evento strong {
    display: block;
}

.folio-evento span {
    margin-bottom: 5px;
    color: #80532e;
    font-size: 0.72rem;
}

.folio-evento strong {
    color: #c44800;
    font-size: 1.25rem;
}

.resumen-confirmacion-evento {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 25px;
    text-align: left;
}

.resumen-confirmacion-evento > div {
    padding: 15px;
    border-radius: 11px;
    background-color: #f5f6f7;
}

.resumen-confirmacion-evento span,
.resumen-confirmacion-evento strong {
    display: block;
}

.resumen-confirmacion-evento span {
    margin-bottom: 5px;
    color: #858585;
    font-size: 0.72rem;
}

.resumen-confirmacion-evento strong {
    font-size: 0.87rem;
}

.btn-whatsapp-evento {
    width: 100%;
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 11px;
    color: #ffffff;
    background-color: #20b866;
    font-weight: bold;
}

.btn-whatsapp-evento:hover {
    color: #ffffff;
    background-color: #169b53;
}

.redireccion-whatsapp {
    margin-top: 12px !important;
    color: #909090 !important;
    font-size: 0.76rem;
}

@media (max-width: 1000px) {
    .grid-servicios-eventos {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .cotizacion-evento-grid {
        grid-template-columns: 1fr;
    }

    .introduccion-formulario-evento {
        position: static;
    }
}

@media (max-width: 650px) {
    .grid-servicios-eventos,
    .grid-campos-evento--2,
    .resumen-confirmacion-evento {
        grid-template-columns: 1fr;
    }

    .formulario-evento-publico,
    .introduccion-formulario-evento,
    .confirmacion-evento__tarjeta {
        padding: 25px 20px;
    }

    .hero-eventos {
        min-height: 560px;
    }

    .confirmacion-evento h1 {
        font-size: 2rem;
    }
}