/* =========================================================
   N.O.C RELEASE ACCOUNTING - VERSIÓN 2.0
   ========================================================= */


/* =========================================================
   VARIABLES GENERALES
   ========================================================= */

:root {
    --black: #070707;
    --dark: #130e0b;
    --brown: #4d2f1d;
    --brown-light: #6a4329;

    --gold: #d4af37;
    --gold-light: #f4d56a;
    --gold-dark: #a77d13;

    --cream: #fbf7ef;
    --cream-dark: #f0e3cf;

    --white: #ffffff;
    --text: #281f19;
    --muted: #6d6259;

    --border-gold: rgba(212, 175, 55, 0.35);

    --shadow-small: 0 12px 30px rgba(0, 0, 0, 0.10);
    --shadow-medium: 0 20px 55px rgba(0, 0, 0, 0.16);
    --shadow-dark: 0 28px 75px rgba(0, 0, 0, 0.42);
}


/* =========================================================
   REINICIO GENERAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   CONTENEDOR GENERAL
   ========================================================= */

.v2-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.v2-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 7, 7, 0.96);

    border-bottom: 1px solid var(--border-gold);

    backdrop-filter: blur(18px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.v2-navbar {
    width: min(1180px, 92%);
    min-height: 88px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO Y NOMBRE
   ========================================================= */

.v2-brand {
    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--gold-light);

    font-weight: 800;
    letter-spacing: 0.4px;

    white-space: nowrap;
}

.v2-brand img {
    width: 62px;
    height: 62px;

    object-fit: cover;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, 0.60);

    box-shadow:
        0 0 25px rgba(212, 175, 55, 0.24),
        0 10px 28px rgba(0, 0, 0, 0.38);
}

.v2-brand span {
    font-size: 1.02rem;
}


/* =========================================================
   MENÚ PRINCIPAL
   ========================================================= */

.v2-menu {
    display: flex;
    align-items: center;

    gap: 5px;
}

.v2-menu > li {
    position: relative;
}

.v2-menu > li > a {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 13px 11px;

    color: var(--white);

    font-size: 0.90rem;
    font-weight: 600;

    border-radius: 12px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.v2-menu > li > a:hover,
.v2-menu > li > a.active {
    color: var(--gold-light);

    background: rgba(212, 175, 55, 0.10);
}

.v2-menu > li > a:hover {
    transform: translateY(-2px);
}

.v2-menu > li > a i {
    font-size: 0.70rem;
}


/* =========================================================
   MENÚ DESPLEGABLE DE SERVICIOS
   ========================================================= */

.v2-dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    width: 275px;

    padding: 11px;

    border-radius: 18px;

    background: #120d09;

    border: 1px solid var(--border-gold);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.v2-dropdown:hover .v2-dropdown-menu,
.v2-dropdown:focus-within .v2-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.v2-dropdown-menu li + li {
    margin-top: 3px;
}

.v2-dropdown-menu a {
    display: block;

    padding: 11px 13px;

    color: #f5e7d4;

    font-size: 0.87rem;

    border-radius: 11px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.v2-dropdown-menu a:hover {
    color: #111111;

    padding-left: 17px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );
}


/* =========================================================
   BOTÓN DEL MENÚ MÓVIL
   ========================================================= */

.v2-menu-button {
    display: none;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    border: 1px solid var(--border-gold);

    color: var(--gold-light);

    background: rgba(255, 255, 255, 0.06);

    font-size: 1.25rem;
}


/* =========================================================
   PORTADA CON IMÁGENES CAMBIANTES
   ========================================================= */

.v2-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(212, 175, 55, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #15100c 58%,
            #3b2416 100%
        );
}

.v2-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transform: translateX(30px);

    transition:
        opacity 0.75s ease,
        visibility 0.75s ease,
        transform 0.75s ease;
}

.v2-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* CONTENIDO INTERNO DE CADA PORTADA */

.v2-slide-inner {
    width: min(1180px, 92%);
    min-height: 650px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    gap: 65px;

    padding: 65px 0 85px;
}


/* TEXTO DE LA PORTADA */

.v2-slide-content {
    color: var(--white);
}

.v2-label {
    display: inline-block;

    color: var(--gold-light);

    font-size: 0.88rem;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.v2-slide-content h1,
.v2-slide-content h2 {
    max-width: 670px;

    margin: 18px 0;

    color: var(--white);

    font-size: clamp(2.7rem, 5vw, 4.35rem);
    line-height: 1.08;

    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.65);
}

.v2-slide-content p {
    max-width: 620px;

    margin-bottom: 30px;

    color: #f5e4cf;

    font-size: 1.12rem;
}


/* ÁREA DONDE APARECE LA IMAGEN */

.v2-slide-visual {
    min-height: 510px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    border-radius: 36px;

    border: 1px solid rgba(212, 175, 55, 0.42);

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.15),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 30px 85px rgba(0, 0, 0, 0.58),
        0 0 45px rgba(212, 175, 55, 0.15);
}


/* PRIMERA PORTADA: LOGO */

.v2-logo-visual img {
    width: min(470px, 88%);
    height: auto;

    object-fit: contain;

    border-radius: 50%;

    filter:
        drop-shadow(0 24px 45px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 24px rgba(212, 175, 55, 0.25));
}


/* SEGUNDA PORTADA: NOELIA COMPLETA */

.v2-person-visual {
    padding: 22px;
}

.v2-person-visual img {
    width: 100%;
    height: 510px;

    object-fit: contain;
    object-position: center;

    border-radius: 25px;
}


/* TERCERA PORTADA: EVENTO */

.v2-event-visual {
    min-height: 475px;
}

.v2-event-visual img {
    width: 100%;
    height: 475px;

    object-fit: cover;
    object-position: center;

    border-radius: 35px;
}


/* =========================================================
   FLECHAS DEL SLIDER
   ========================================================= */

.v2-slider-arrow {
    position: absolute;

    top: 50%;

    width: 54px;
    height: 54px;

    transform: translateY(-50%);

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.28);

    color: var(--white);

    background: rgba(0, 0, 0, 0.42);

    backdrop-filter: blur(12px);

    z-index: 5;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.v2-slider-arrow:hover {
    color: #111111;

    background: var(--gold-light);
}

.v2-previous {
    left: 22px;
}

.v2-next {
    right: 22px;
}


/* =========================================================
   PUNTOS DEL SLIDER
   ========================================================= */

.v2-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 27px;

    transform: translateX(-50%);

    display: flex;

    gap: 11px;

    z-index: 5;
}

.v2-dot {
    width: 12px;
    height: 12px;

    padding: 0;

    border-radius: 50%;

    border: 1px solid var(--white);

    background: transparent;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.v2-dot.active {
    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: scale(1.2);
}


/* =========================================================
   PORTADA EN TABLETA
   ========================================================= */

@media (max-width: 900px) {

    .v2-slider {
        min-height: 930px;
    }

    .v2-slide-inner {
        min-height: 930px;

        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 60px;
        padding-bottom: 95px;

        text-align: center;
    }

    .v2-slide-content h1,
    .v2-slide-content h2,
    .v2-slide-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-slide-visual {
        min-height: 440px;

        width: min(570px, 100%);

        margin: 0 auto;
    }

    .v2-person-visual img {
        height: 440px;
    }

    .v2-event-visual img {
        height: 440px;
    }
}


/* =========================================================
   PORTADA EN CELULAR
   ========================================================= */

@media (max-width: 650px) {

    .v2-slider {
        min-height: 850px;
    }

    .v2-slide-inner {
        min-height: 850px;

        padding-top: 46px;
        padding-bottom: 90px;
    }

    .v2-slide-content h1,
    .v2-slide-content h2 {
        font-size: 2.35rem;
    }

    .v2-slide-content p {
        font-size: 1rem;
    }

    .v2-slide-visual {
        min-height: 360px;

        border-radius: 27px;
    }

    .v2-logo-visual img {
        width: min(350px, 88%);
    }

    .v2-person-visual img {
        height: 370px;
    }

    .v2-event-visual,
    .v2-event-visual img {
        min-height: 350px;
        height: 350px;
    }

    .v2-slider-arrow {
        width: 44px;
        height: 44px;
    }

    .v2-previous {
        left: 8px;
    }

    .v2-next {
        right: 8px;
    }
}


/* =========================================================
   BOTONES
   ========================================================= */

.v2-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}

.v2-btn-primary,
.v2-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    gap: 9px;

    min-height: 52px;

    padding: 14px 26px;

    border-radius: 999px;

    font-weight: 800;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease,
        color 0.28s ease;
}

.v2-btn-primary {
    color: #111111;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );

    box-shadow: 0 15px 38px rgba(212, 175, 55, 0.31);
}

.v2-btn-primary:hover {
    transform: translateY(-4px);

    box-shadow: 0 22px 50px rgba(212, 175, 55, 0.42);
}

.v2-btn-secondary {
    color: var(--white);

    border: 2px solid var(--gold);

    background: rgba(0, 0, 0, 0.18);
}

.v2-btn-secondary:hover {
    color: #111111;

    transform: translateY(-4px);

    background: var(--gold-light);
}


/* =========================================================
   SECCIONES GENERALES
   ========================================================= */

.v2-section {
    padding: 105px 0;
}

.v2-light {
    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(212, 175, 55, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--cream),
            var(--white)
        );
}

.v2-dark {
    color: var(--white);

    background:
        radial-gradient(
            circle at 17% 20%,
            rgba(212, 175, 55, 0.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--black),
            #17110d 62%,
            #3b2314
        );
}


/* =========================================================
   TÍTULOS DE SECCIONES
   ========================================================= */

.v2-section-title {
    max-width: 850px;

    margin: 0 auto 58px;

    text-align: center;
}

.v2-section-title span {
    color: var(--gold-dark);

    font-size: 0.87rem;
    font-weight: 900;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.v2-section-title h2 {
    margin: 13px 0 15px;

    color: var(--text);

    font-size: clamp(2.2rem, 5vw, 3.25rem);
    line-height: 1.17;
}

.v2-section-title p {
    color: var(--muted);

    font-size: 1.04rem;
}


/* =========================================================
   TARJETAS DE ACCESO RÁPIDO
   ========================================================= */

.v2-access-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 19px;
}

.v2-access-card {
    min-height: 255px;

    padding: 31px 24px;

    color: var(--text);

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid var(--border-gold);

    border-radius: 27px;

    box-shadow: var(--shadow-small);

    transition:
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.v2-access-card:hover {
    transform: translateY(-11px);

    border-color: var(--gold);

    box-shadow: 0 30px 70px rgba(90, 53, 24, 0.22);
}

.v2-access-card i {
    margin-bottom: 22px;

    color: var(--gold);

    font-size: 2.75rem;

    text-shadow: 0 0 20px rgba(212, 175, 55, 0.22);
}

.v2-access-card h3 {
    margin-bottom: 10px;

    font-size: 1.24rem;
}

.v2-access-card p {
    color: var(--muted);

    font-size: 0.92rem;
}


/* =========================================================
   PRESENTACIÓN DE LA COMPAÑÍA
   ========================================================= */

.v2-company-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 72px;
}

.v2-company-text h2 {
    margin: 16px 0 20px;

    font-size: clamp(2.2rem, 5vw, 3.45rem);
    line-height: 1.17;
}

.v2-company-text p {
    margin-bottom: 17px;

    color: #eedfca;

    font-size: 1.04rem;
}

.v2-company-image {
    overflow: hidden;

    border-radius: 38px;

    border: 1px solid var(--border-gold);

    box-shadow: var(--shadow-dark);
}

.v2-company-image img {
    width: 100%;
    height: auto;
    max-height: 650px;

    object-fit: contain;
    object-position: center;

    transition: transform 0.45s ease;
}

.v2-company-image:hover img {
    transform: scale(1.035);
}

.v2-text-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 13px;

    color: var(--gold-light);

    font-weight: 800;

    transition: gap 0.25s ease;
}

.v2-text-link:hover {
    gap: 15px;
}


/* =========================================================
   OFERTA
   ========================================================= */

.v2-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 38px;

    padding: 44px;

    border-radius: 34px;

    border: 1px solid var(--border-gold);

    background: var(--white);

    box-shadow: var(--shadow-medium);
}

.v2-offer-label {
    display: inline-block;

    margin-bottom: 15px;

    padding: 8px 17px;

    color: #111111;

    font-size: 0.88rem;
    font-weight: 900;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );
}

.v2-offer h2 {
    margin-bottom: 9px;

    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.18;
}

.v2-offer p {
    max-width: 700px;

    color: var(--muted);
}


/* =========================================================
   PIE DE PÁGINA
   ========================================================= */

.v2-footer {
    color: #d9cabb;

    background: #050505;

    border-top: 1px solid var(--border-gold);
}

.v2-footer-grid {
    display: grid;

    grid-template-columns: 1.35fr 0.80fr 1fr;

    gap: 48px;

    padding-top: 62px;
    padding-bottom: 44px;
}

.v2-footer h3 {
    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 1.55rem;
}

.v2-footer h4 {
    margin-bottom: 15px;

    color: var(--white);
}

.v2-footer-grid > div:nth-child(2) {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.v2-footer-grid > div:nth-child(2) a {
    color: #d9cabb;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.v2-footer-grid > div:nth-child(2) a:hover {
    color: var(--gold-light);

    padding-left: 5px;
}

.v2-footer-grid > div:nth-child(3) p {
    margin-bottom: 11px;
}

.v2-footer-grid > div:nth-child(3) i {
    width: 24px;

    color: var(--gold-light);
}


/* =========================================================
   REDES SOCIALES DEL FOOTER
   ========================================================= */

.v2-social {
    display: flex;

    gap: 12px;

    margin-top: 22px;
}

.v2-social a {
    width: 45px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.v2-social a:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.30);
}


/* =========================================================
   PARTE FINAL DEL FOOTER
   ========================================================= */

.v2-footer-bottom {
    min-height: 72px;

    padding: 18px 4%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.87rem;
}


/* =========================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================= */

.v2-whatsapp {
    position: fixed;

    right: 23px;
    bottom: 23px;

    width: 62px;
    height: 62px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--white);

    border-radius: 50%;

    background: #25d366;

    font-size: 2rem;

    z-index: 900;

    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.42);

    animation: v2Pulse 1.9s infinite;
}


/* =========================================================
   ANIMACIÓN DEL WHATSAPP
   ========================================================= */

@keyframes v2Pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.48),
            0 12px 35px rgba(37, 211, 102, 0.38);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(37, 211, 102, 0),
            0 12px 35px rgba(37, 211, 102, 0.38);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 12px 35px rgba(37, 211, 102, 0.38);
    }
}


/* =========================================================
   ESTILOS GENERALES PARA LAS PRÓXIMAS PÁGINAS
   ========================================================= */

.v2-page-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    color: var(--white);

    background-size: cover;
    background-position: center;
}

.v2-page-hero h1 {
    margin: 14px 0;

    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 1.05;

    text-shadow: 0 14px 40px rgba(0, 0, 0, 0.60);
}

.v2-page-hero p {
    max-width: 700px;

    color: #f2e2cc;

    font-size: 1.10rem;
}

.v2-content-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 68px;
}

.v2-content-card {
    padding: 35px 30px;

    border-radius: 28px;

    border: 1px solid var(--border-gold);

    background: var(--white);

    box-shadow: var(--shadow-small);
}


/* =========================================================
   RESPONSIVE PARA TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .v2-menu > li > a {
        padding-left: 8px;
        padding-right: 8px;

        font-size: 0.83rem;
    }

    .v2-access-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVE PARA MENÚ MÓVIL
   ========================================================= */

@media (max-width: 900px) {

    .v2-navbar {
        min-height: 78px;
    }

    .v2-menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .v2-menu {
        position: absolute;

        top: calc(100% + 10px);
        left: 4%;
        right: 4%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 3px;

        padding: 15px;

        border-radius: 22px;

        border: 1px solid var(--border-gold);

        background: #120d09;

        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    }

    .v2-menu.open {
        display: flex;
    }

    .v2-menu > li > a {
        justify-content: space-between;

        padding: 13px 14px;
    }

    .v2-dropdown-menu {
        position: static;

        display: none;

        width: 100%;

        margin-top: 5px;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;

        background: rgba(255, 255, 255, 0.045);
    }

    .v2-dropdown.open .v2-dropdown-menu {
        display: block;
    }

    .v2-slide-content {
        text-align: center;
    }

    .v2-slide-content h1,
    .v2-slide-content h2,
    .v2-slide-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-buttons {
        justify-content: center;
    }

    .v2-company-grid,
    .v2-content-grid {
        grid-template-columns: 1fr;
    }

    .v2-company-image img {
        height: auto;
        max-height: 620px;
    }

    .v2-offer {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   RESPONSIVE PARA CELULAR
   ========================================================= */

@media (max-width: 650px) {

    .v2-brand span {
        display: none;
    }

    .v2-brand img {
        width: 54px;
        height: 54px;
    }

    .v2-slide-content h1,
    .v2-slide-content h2 {
        font-size: 2.45rem;
    }

    .v2-slide-content p {
        font-size: 1rem;
    }

    .v2-buttons {
        flex-direction: column;
    }

    .v2-btn-primary,
    .v2-btn-secondary {
        width: 100%;
    }

    .v2-slider-arrow {
        width: 45px;
        height: 45px;
    }

    .v2-previous {
        left: 10px;
    }

    .v2-next {
        right: 10px;
    }

    .v2-section {
        padding: 76px 0;
    }

    .v2-access-grid {
        grid-template-columns: 1fr;
    }

    .v2-access-card {
        min-height: auto;
    }

    .v2-company-image img {
        height: auto;
        max-height: 540px;
    }

    .v2-offer {
        padding: 29px 23px;
    }

    .v2-footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .v2-footer-grid > div:first-child {
        grid-column: auto;
    }

    .v2-footer-bottom {
        flex-direction: column;
        justify-content: center;

        text-align: center;
    }

    .v2-page-hero {
        min-height: 360px;

        text-align: center;
    }

    .v2-whatsapp {
        width: 58px;
        height: 58px;

        right: 18px;
        bottom: 18px;
    }
}


/* =========================================================
   AJUSTES FINALES VERIFICADOS - PORTADA V2
   ========================================================= */

/* El archivo logo.png ya tiene transparencia real. No se recorta ni se le añade otro círculo. */
.v2-slide-logo .v2-slide-visual {
    position: relative;
    width: min(500px, 90%);
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.v2-slide-logo .v2-slide-visual::before {
    content: none;
}

.v2-logo-visual img {
    width: min(490px, 96%);
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    clip-path: none;
    transform: none;
    filter:
        drop-shadow(0 24px 36px rgba(0, 0, 0, 0.48))
        drop-shadow(0 0 15px rgba(212, 175, 55, 0.16));
}

/* Logo pequeño del menú: usa el PNG transparente sin cortarlo. */
.v2-brand img {
    object-fit: contain;
    background: transparent;
}

/* Noelia completa en la segunda portada. */
.v2-person-visual {
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.v2-person-visual img {
    width: 100%;
    height: 510px;
    object-fit: contain;
    object-position: center;
    border-radius: 24px;
}

/* La foto de presentación también se muestra completa. */
.v2-company-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b;
}

.v2-company-image img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    object-position: center;
}

/* El crédito del footer no se corta en pantallas medianas. */
.v2-footer-bottom {
    flex-wrap: wrap;
}

.v2-footer-bottom p {
    max-width: 100%;
}

@media (max-width: 900px) {
    .v2-slider,
    .v2-slide-inner {
        min-height: 930px;
    }

    .v2-person-visual img {
        height: 440px;
    }
}

@media (max-width: 650px) {
    .v2-slider,
    .v2-slide-inner {
        min-height: 850px;
    }

    .v2-logo-visual img {
        width: min(390px, 94%);
    }

    .v2-person-visual img {
        height: 370px;
    }
}

/* Ajuste de posición del texto en la segunda portada */

.v2-slide-professional .v2-slide-content {
    padding-top: 35px;
}

/* =========================================================
   POR QUÉ ELEGIRNOS
   ========================================================= */

.v2-benefits-section {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 175, 55, 0.12),
            transparent 28%
        ),
        #ffffff;
}

.v2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.v2-benefit-card {
    padding: 32px 24px;

    border: 1px solid var(--border-gold);
    border-radius: 26px;

    background: var(--cream);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.v2-benefit-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow: 0 25px 55px rgba(90, 53, 24, 0.18);
}

.v2-benefit-card i {
    margin-bottom: 20px;

    color: var(--gold-dark);

    font-size: 2.35rem;
}

.v2-benefit-card h3 {
    margin-bottom: 12px;

    font-size: 1.15rem;
    line-height: 1.3;
}

.v2-benefit-card p {
    color: var(--muted);

    font-size: 0.92rem;
}

@media (max-width: 1100px) {

    .v2-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {

    .v2-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESULTADOS Y ALCANCE
   ========================================================= */

.v2-stats-section {
    color: var(--white);

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(212, 175, 55, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505,
            #18110c 62%,
            #3a2316
        );
}

.v2-stats-title h2 {
    color: var(--white);
}

.v2-stats-title p {
    color: #eadbc8;
}

.v2-stats-title span {
    color: var(--gold-light);
}

.v2-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.v2-stat-card {
    min-height: 265px;

    padding: 34px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.055);

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.v2-stat-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    background: rgba(212, 175, 55, 0.10);
}

.v2-stat-card i {
    margin-bottom: 17px;

    color: var(--gold-light);

    font-size: 2.25rem;
}

.v2-stat-card strong {
    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 3rem;
    line-height: 1;
}

.v2-stat-card span {
    color: #f4e6d3;

    font-size: 0.93rem;
    line-height: 1.55;
}

.v2-service-features {
    margin-top: 34px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.v2-service-features > div {
    min-height: 120px;

    padding: 24px;

    display: flex;
    align-items: center;

    gap: 16px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.v2-service-features i {
    color: var(--gold-light);

    font-size: 1.65rem;
}

.v2-service-features p {
    color: #f4e6d3;

    line-height: 1.55;
}

@media (max-width: 1000px) {

    .v2-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .v2-stats-grid {
        grid-template-columns: 1fr;
    }

    .v2-stat-card {
        min-height: 220px;
    }
}

/* =========================================================
   TESTIMONIOS
   ========================================================= */

.v2-testimonials-section {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(212, 175, 55, 0.13),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            var(--cream),
            #ffffff
        );
}

.v2-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.v2-testimonial-card {
    position: relative;

    min-height: 350px;

    padding: 32px 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border-gold);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.v2-testimonial-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow: 0 28px 65px rgba(90, 53, 24, 0.18);
}

.v2-testimonial-header {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 19px;
}

.v2-testimonial-initials {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    font-weight: 900;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );
}

.v2-testimonial-header h3 {
    margin-bottom: 2px;

    font-size: 1.06rem;
}

.v2-testimonial-header span {
    color: var(--muted);

    font-size: 0.82rem;
}

.v2-testimonial-stars {
    display: flex;

    gap: 4px;

    margin-bottom: 20px;

    color: var(--gold);
}

.v2-testimonial-card blockquote {
    margin-bottom: 24px;

    color: var(--text);

    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.7;
}

.v2-testimonial-card time {
    margin-top: auto;

    color: var(--muted);

    font-size: 0.82rem;
}

@media (max-width: 900px) {

    .v2-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .v2-testimonial-card {
        min-height: auto;
    }
}

/* Enlaces de contacto en el footer */

.v2-footer-grid > div:nth-child(3) a {
    color: #d9cabb;
}

.v2-footer-grid > div:nth-child(3) a:hover {
    color: var(--gold-light);
}

/* =========================================================
   PÁGINA SOBRE NOSOTROS
   ========================================================= */


/* PORTADA */

.v2-about-page .v2-page-hero {
    position: relative;

    min-height: 650px;

    padding: 75px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(212, 175, 55, 0.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(106, 67, 41, 0.32),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505,
            #17100c 58%,
            #3b2315
        );
}

.v2-about-page .v2-page-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, 0.85fr);

    align-items: center;

    gap: 70px;
}

.v2-about-page .v2-page-hero-content {
    position: relative;

    z-index: 2;
}

.v2-about-page .v2-page-hero h1 {
    max-width: 720px;

    margin: 16px 0 20px;

    font-size: clamp(2.6rem, 4.4vw, 4rem);
    line-height: 1.08;
}

.v2-about-page .v2-page-hero-content > p {
    max-width: 650px;

    margin-bottom: 30px;

    color: #f0dfca;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* FOTO PRINCIPAL */

.v2-about-page .v2-page-hero-image {
    position: relative;

    width: min(450px, 100%);

    aspect-ratio: 3 / 4;

    justify-self: end;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 38px;

    background: #17110d;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.50),
        0 0 35px rgba(212, 175, 55, 0.12);
}

.v2-about-page .v2-page-hero-image::after {
    content: "";

    position: absolute;

    inset: 14px;

    pointer-events: none;

    border: 1px solid rgba(244, 213, 106, 0.28);
    border-radius: 28px;
}

.v2-about-page .v2-page-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.5s ease;
}

.v2-about-page .v2-page-hero-image:hover img {
    transform: scale(1.025);
}


/* NUESTRA HISTORIA */

.v2-about-page .v2-dark .v2-company-text h2 {
    color: var(--white);
}

.v2-about-page .v2-page-hero + .v2-dark .v2-company-image {
    aspect-ratio: 7 / 5;

    background: #17110d;
}

.v2-about-page .v2-page-hero + .v2-dark .v2-company-image img {
    width: 100%;
    height: 100%;
    max-height: none;

    object-fit: cover;
    object-position: center;
}


/* MISIÓN Y VISIÓN */

.v2-mission-vision-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}

.v2-mission-vision-card {
    position: relative;

    min-height: 390px;

    padding: 42px 38px;

    overflow: hidden;

    border: 1px solid var(--border-gold);
    border-radius: 32px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-mission-vision-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark),
            var(--gold-light)
        );
}

.v2-mission-vision-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow: 0 28px 65px rgba(90, 53, 24, 0.18);
}

.v2-mission-vision-icon {
    width: 72px;
    height: 72px;

    margin-bottom: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    font-size: 2rem;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );

    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.28);
}

.v2-mission-vision-card h3 {
    margin-bottom: 17px;

    color: var(--text);

    font-size: 1.55rem;
}

.v2-mission-vision-card p {
    margin-bottom: 15px;

    color: var(--muted);

    line-height: 1.8;
}


/* EXPERIENCIA Y RECURSOS */

.v2-about-details-section {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(212, 175, 55, 0.12),
            transparent 27%
        ),
        #ffffff;
}

.v2-about-details-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.v2-about-detail-card {
    min-height: 310px;

    padding: 36px 30px;

    border: 1px solid var(--border-gold);
    border-radius: 28px;

    background: var(--cream);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-about-detail-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow: 0 25px 55px rgba(90, 53, 24, 0.17);
}

.v2-about-detail-card > i {
    margin-bottom: 23px;

    color: var(--gold-dark);

    font-size: 2.5rem;
}

.v2-about-detail-card h3 {
    margin-bottom: 15px;

    color: var(--text);

    font-size: 1.28rem;
    line-height: 1.35;
}

.v2-about-detail-card p {
    color: var(--muted);

    line-height: 1.8;
}


/* LLAMADO A LA ACCIÓN */

.v2-about-cta {
    padding: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 45px;

    color: var(--white);

    border: 1px solid var(--border-gold);
    border-radius: 36px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(212, 175, 55, 0.20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #070707,
            #20150e 65%,
            #4a2c1a
        );

    box-shadow: var(--shadow-dark);
}

.v2-about-cta h2 {
    max-width: 720px;

    margin: 14px 0 12px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
}

.v2-about-cta p {
    color: #eadbc8;

    line-height: 1.7;
}

.v2-about-cta-buttons {
    min-width: 230px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* TABLETA */

@media (max-width: 950px) {

    .v2-about-page .v2-page-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .v2-about-page .v2-page-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-about-page .v2-page-hero-image {
        width: min(430px, 90%);

        justify-self: center;
    }

    .v2-mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .v2-about-details-grid {
        grid-template-columns: 1fr;
    }

    .v2-about-detail-card {
        min-height: auto;
    }

    .v2-about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-about-cta-buttons {
        width: 100%;

        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .v2-about-page .v2-page-hero {
        min-height: auto;

        padding: 60px 0;
    }

    .v2-about-page .v2-page-hero h1 {
        font-size: 2.55rem;
    }

    .v2-about-page .v2-page-hero-image {
        width: 100%;
    }

    .v2-mission-vision-card {
        min-height: auto;

        padding: 34px 25px;
    }

    .v2-about-detail-card {
        padding: 32px 25px;
    }

    .v2-about-cta {
        padding: 34px 25px;
    }

    .v2-about-cta-buttons {
        flex-direction: column;
    }

    .v2-about-cta-buttons a {
        width: 100%;
    }
}

/* =========================================================
   LOGOS FLOTANTES — AJUSTE FINAL COHERENTE
   ========================================================= */

/* Logo grande de la primera portada */
.v2-slide-logo .v2-logo-float {
    position: relative;
    width: min(430px, 90%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    animation: v2LogoFloat 5.2s ease-in-out infinite;
}

/* Volumen circular muy sutil detrás del logo */
.v2-slide-logo .v2-logo-float::before {
    content: "";
    position: absolute;
    inset: 8%;
    z-index: 0;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 38% 30%,
            rgba(255, 226, 142, 0.15) 0%,
            rgba(212, 175, 55, 0.08) 38%,
            rgba(64, 39, 20, 0.18) 68%,
            rgba(0, 0, 0, 0) 100%
        );
    box-shadow:
        inset 0 0 34px rgba(244, 213, 106, 0.06),
        0 20px 44px rgba(0, 0, 0, 0.20);
}

/* Sombra inferior discreta; forma parte del conjunto y flota con él */
.v2-slide-logo .v2-logo-float::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7%;
    z-index: 0;
    width: 56%;
    height: 8%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.32) 0%,
        rgba(0, 0, 0, 0.12) 52%,
        transparent 76%
    );
    filter: blur(10px);
    transform: translateX(-50%);
}

.v2-slide-logo .v2-logo-float img {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 390px;
    height: auto;
    display: block;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter:
        drop-shadow(0 16px 24px rgba(0, 0, 0, 0.32))
        drop-shadow(0 0 13px rgba(212, 175, 55, 0.14));
}

/* Solo flota el logo pequeño; el nombre y el menú permanecen quietos */
.v2-brand img {
    animation: v2HeaderLogoFloat 5.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes v2LogoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes v2HeaderLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 650px) {
    .v2-slide-logo .v2-logo-float {
        width: min(350px, 90%);
    }

    .v2-slide-logo .v2-logo-float img {
        width: 88%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-slide-logo .v2-logo-float,
    .v2-brand img {
        animation: none;
    }
}

/* Alinear la foto con el inicio de Nuestra Historia */

.v2-about-page .v2-page-hero + .v2-dark .v2-company-grid {
    align-items: start;
}

/* Corregir iconos de redes sociales del footer */

.v2-footer-grid > div:nth-child(3) .v2-social a i {
    width: auto;
    color: #111111;
    font-size: 1.05rem;
}

/* Reforzar Instagram y WhatsApp en el footer */

.v2-social .fa-instagram,
.v2-social .fa-whatsapp {
    color: #000000 !important;
    opacity: 1 !important;
    font-size: 1.18rem;
    -webkit-text-stroke: 0.35px #000000;
    text-shadow: none;
}

/* =========================================================
   PÁGINA DE SERVICIOS
   ========================================================= */


/* PORTADA */

.v2-services-page .v2-services-hero {
    position: relative;

    min-height: 650px;

    padding: 75px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(212, 175, 55, 0.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 88%,
            rgba(92, 53, 29, 0.30),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505,
            #18100c 60%,
            #3a2215
        );
}

.v2-services-page .v2-services-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(340px, 0.88fr);

    align-items: center;

    gap: 70px;
}

.v2-services-page .v2-services-hero-content {
    position: relative;

    z-index: 2;
}

.v2-services-page .v2-services-hero-content h1 {
    max-width: 760px;

    margin: 18px 0 22px;

    color: #ffffff;

    font-size: clamp(2.7rem, 4.6vw, 4.2rem);
    line-height: 1.08;
}

.v2-services-page .v2-services-hero-content > p {
    max-width: 650px;

    margin-bottom: 30px;

    color: #f0dfca;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* FOTO DE PORTADA */

.v2-services-page .v2-services-hero-image {
    position: relative;

    width: min(465px, 100%);
    aspect-ratio: 4 / 5;

    justify-self: end;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 38px;

    background: #17110d;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.50),
        0 0 35px rgba(212, 175, 55, 0.12);
}

.v2-services-page .v2-services-hero-image::after {
    content: "";

    position: absolute;

    inset: 14px;

    pointer-events: none;

    border: 1px solid rgba(244, 213, 106, 0.28);
    border-radius: 28px;
}

.v2-services-page .v2-services-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}

.v2-services-page .v2-services-hero-image:hover img {
    transform: scale(1.025);
}


/* CUADRÍCULA DE SERVICIOS */

.v2-services-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.v2-service-card {
    position: relative;

    min-height: 355px;

    padding: 34px 30px;

    display: flex;
    flex-direction: column;

    scroll-margin-top: 125px;

    overflow: hidden;

    border: 1px solid var(--border-gold, rgba(212, 175, 55, 0.42));
    border-radius: 28px;

    background: var(--cream, #fbf7ef);

    box-shadow: var(
        --shadow-small,
        0 18px 45px rgba(75, 43, 19, 0.10)
    );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark, #a87808),
            var(--gold-light, #f6d65c)
        );
}

.v2-service-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold, #d4af37);

    box-shadow:
        0 28px 60px rgba(75, 43, 19, 0.17);
}

.v2-service-icon {
    width: 70px;
    height: 70px;

    margin-bottom: 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    color: #111111;

    font-size: 1.9rem;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );

    box-shadow:
        0 15px 32px rgba(212, 175, 55, 0.27);
}

.v2-service-card h3 {
    margin-bottom: 15px;

    color: var(--text, #21170f);

    font-size: 1.3rem;
    line-height: 1.35;
}

.v2-service-card p {
    margin-bottom: 25px;

    color: var(--muted, #6d5a4c);

    line-height: 1.8;
}

.v2-service-link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold-dark, #a87808);

    font-weight: 700;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.v2-service-link:hover {
    gap: 14px;

    color: #6f4800;
}


/* SECCIÓN DE MODALIDAD */

.v2-service-methods-section {
    background:
        radial-gradient(
            circle at 88% 16%,
            rgba(212, 175, 55, 0.15),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #050505,
            #1c120d 68%,
            #3a2215
        );
}

.v2-service-methods-title h2 {
    color: #ffffff;
}

.v2-service-methods-title p {
    color: #eadbc8;
}

.v2-service-methods-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.v2-service-method-card {
    min-height: 280px;

    padding: 36px 30px;

    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.055);

    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.v2-service-method-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold, #d4af37);

    background:
        rgba(255, 255, 255, 0.085);
}

.v2-service-method-card > i {
    margin-bottom: 24px;

    color: var(--gold-light, #f6d65c);

    font-size: 2.45rem;
}

.v2-service-method-card h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 1.28rem;
}

.v2-service-method-card p {
    color: #eadbc8;

    line-height: 1.8;
}


/* LLAMADO A LA ACCIÓN */

.v2-services-cta {
    padding: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 45px;

    color: #ffffff;

    border: 1px solid var(--border-gold, rgba(212, 175, 55, 0.42));
    border-radius: 36px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(212, 175, 55, 0.20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #070707,
            #20150e 65%,
            #4a2c1a
        );

    box-shadow: var(
        --shadow-dark,
        0 30px 70px rgba(0, 0, 0, 0.35)
    );
}

.v2-services-cta h2 {
    max-width: 720px;

    margin: 14px 0 12px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
}

.v2-services-cta p {
    color: #eadbc8;

    line-height: 1.7;
}

.v2-services-cta-buttons {
    min-width: 230px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* TABLETA */

@media (max-width: 1050px) {

    .v2-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-service-methods-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 950px) {

    .v2-services-page .v2-services-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .v2-services-page .v2-services-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-services-page .v2-services-hero-image {
        width: min(440px, 90%);

        justify-self: center;
    }

    .v2-services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-services-cta-buttons {
        width: 100%;

        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .v2-services-page .v2-services-hero {
        min-height: auto;

        padding: 60px 0;
    }

    .v2-services-page .v2-services-hero-content h1 {
        font-size: 2.5rem;
    }

    .v2-services-page .v2-services-hero-image {
        width: 100%;
    }

    .v2-services-grid,
    .v2-service-methods-grid {
        grid-template-columns: 1fr;
    }

    .v2-service-card,
    .v2-service-method-card {
        min-height: auto;

        padding: 32px 25px;
    }

    .v2-services-cta {
        padding: 34px 25px;
    }

    .v2-services-cta-buttons {
        flex-direction: column;
    }

    .v2-services-cta-buttons a {
        width: 100%;
    }
}

/* Ajuste de altura para mostrar los botones en la portada de Servicios */

.v2-services-page .v2-services-hero {
    min-height: 590px;
    padding: 55px 0;
}

.v2-services-page .v2-services-hero-content h1 {
    max-width: 700px;
    margin: 14px 0 18px;
    font-size: clamp(2.5rem, 4.1vw, 3.75rem);
    line-height: 1.07;
}

.v2-services-page .v2-services-hero-content > p {
    margin-bottom: 24px;
}

/* Centrar la última tarjeta de Servicios en computadora */

@media (min-width: 1051px) {

    .v2-services-grid .v2-service-card:last-child {
        grid-column: 2;
    }
}

/* Evitar que WhatsApp cubra la firma del footer */

.v2-footer-bottom {
    box-sizing: border-box;
    padding-right: 115px;
    flex-wrap: wrap;
    gap: 10px 30px;
}

@media (max-width: 650px) {

    .v2-footer-bottom {
        padding-right: 24px;
        padding-left: 24px;
    }
}

/* =========================================================
   PÁGINA SOLICITAR CITA
   ========================================================= */


/* PORTADA */

.v2-booking-page .v2-booking-hero {
    position: relative;

    min-height: 590px;
    padding: 58px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(212, 175, 55, 0.20),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(102, 59, 31, 0.30),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505,
            #18100c 62%,
            #3a2215
        );
}

.v2-booking-page .v2-booking-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, 0.9fr);

    align-items: center;

    gap: 70px;
}

.v2-booking-page .v2-booking-hero-content {
    position: relative;
    z-index: 2;
}

.v2-booking-page .v2-booking-hero-content h1 {
    max-width: 760px;

    margin: 16px 0 20px;

    color: #ffffff;

    font-size: clamp(2.6rem, 4.3vw, 4rem);
    line-height: 1.08;
}

.v2-booking-page .v2-booking-hero-content > p {
    max-width: 650px;

    margin-bottom: 27px;

    color: #f0dfca;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* TARJETA DE HORARIO */

.v2-booking-hero-card {
    position: relative;

    width: min(440px, 100%);

    justify-self: end;

    padding: 40px 36px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(7px);
}

.v2-booking-hero-card::before {
    content: "";

    position: absolute;
    inset: 12px;

    pointer-events: none;

    border: 1px solid rgba(244, 213, 106, 0.18);
    border-radius: 25px;
}

.v2-booking-calendar-icon {
    position: relative;

    width: 76px;
    height: 76px;

    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #111111;

    font-size: 2rem;

    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );

    box-shadow:
        0 16px 35px rgba(212, 175, 55, 0.28);
}

.v2-booking-hero-card h2 {
    position: relative;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: 1.65rem;
}

.v2-booking-hours {
    position: relative;

    display: grid;
    gap: 19px;
}

.v2-booking-hours p {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    color: #eadbc8;

    line-height: 1.65;
}

.v2-booking-hours p > i {
    width: 22px;

    margin-top: 4px;

    flex-shrink: 0;

    color: var(--gold-light, #f6d65c);

    text-align: center;
}


/* SECCIÓN DEL FORMULARIO */

.v2-booking-section {
    scroll-margin-top: 105px;

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(212, 175, 55, 0.10),
            transparent 26%
        ),
        #fffdf9;
}

.v2-booking-layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.72fr)
        minmax(0, 1.28fr);

    align-items: start;

    gap: 35px;
}


/* INFORMACIÓN LATERAL */

.v2-booking-info {
    position: sticky;
    top: 125px;

    padding: 38px 32px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(212, 175, 55, 0.17),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #080808,
            #26180f
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}

.v2-booking-info h3 {
    margin: 17px 0 13px;

    color: #ffffff;

    font-size: 1.75rem;
}

.v2-booking-info > p {
    margin-bottom: 28px;

    color: #eadbc8;

    line-height: 1.75;
}

.v2-booking-info > a {
    margin-bottom: 15px;
    padding: 17px 16px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.v2-booking-info > a:hover {
    transform: translateY(-4px);

    border-color: var(--gold, #d4af37);

    background: rgba(255, 255, 255, 0.09);
}

.v2-booking-info > a > i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #111111;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );
}

.v2-booking-info > a span {
    min-width: 0;

    overflow-wrap: anywhere;

    font-weight: 600;
}

.v2-booking-info > a small {
    margin-bottom: 3px;

    display: block;

    color: #d8c6af;

    font-size: 0.75rem;
    font-weight: 400;
}

.v2-booking-note {
    margin-top: 25px;
    padding: 18px;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: #eadbc8;

    border-radius: 18px;

    background: rgba(212, 175, 55, 0.10);
}

.v2-booking-note > i {
    margin-top: 4px;

    color: var(--gold-light, #f6d65c);
}

.v2-booking-note p {
    line-height: 1.6;
}


/* TARJETA DEL FORMULARIO */

.v2-booking-form-card {
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 25px 65px rgba(71, 43, 20, 0.13);
}

.v2-booking-form-header {
    padding: 34px 36px 28px;

    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    background:
        linear-gradient(
            135deg,
            #fffdf8,
            #f8eedc
        );
}

.v2-booking-form-header > span {
    color: var(--gold-dark, #a87808);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v2-booking-form-header h3 {
    margin: 9px 0 8px;

    color: var(--text, #21170f);

    font-size: 1.65rem;
}

.v2-booking-form-header p {
    color: var(--muted, #6d5a4c);

    line-height: 1.7;
}


/* JOTFORM */

.v2-jotform-frame {
    width: 100%;
    min-height: 1050px;

    display: block;

    border: 0;

    background: #ffffff;
}

.v2-form-fallback {
    padding: 18px 25px 24px;

    color: var(--muted, #6d5a4c);

    text-align: center;

    border-top: 1px solid rgba(212, 175, 55, 0.20);
}

.v2-form-fallback a {
    margin-left: 5px;

    color: var(--gold-dark, #a87808);

    font-weight: 700;
}

.v2-form-fallback a:hover {
    text-decoration: underline;
}


/* LLAMADO FINAL */

.v2-booking-cta {
    padding: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 45px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 36px;

    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(212, 175, 55, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #070707,
            #20150e 65%,
            #4a2c1a
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35);
}

.v2-booking-cta h2 {
    max-width: 700px;

    margin: 14px 0 12px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
}

.v2-booking-cta p {
    color: #eadbc8;

    line-height: 1.7;
}

.v2-booking-cta-buttons {
    min-width: 220px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* TABLETA */

@media (max-width: 950px) {

    .v2-booking-page .v2-booking-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .v2-booking-page .v2-booking-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-booking-page .v2-booking-hero-card {
        width: min(500px, 100%);

        justify-self: center;

        text-align: left;
    }

    .v2-booking-layout {
        grid-template-columns: 1fr;
    }

    .v2-booking-info {
        position: static;
    }

    .v2-booking-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-booking-cta-buttons {
        width: 100%;

        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .v2-booking-page .v2-booking-hero {
        min-height: auto;

        padding: 58px 0;
    }

    .v2-booking-page .v2-booking-hero-content h1 {
        font-size: 2.45rem;
    }

    .v2-booking-hero-card,
    .v2-booking-info {
        padding: 31px 24px;
    }

    .v2-booking-form-header {
        padding: 29px 23px 23px;
    }

    .v2-jotform-frame {
        min-height: 1200px;
    }

    .v2-booking-cta {
        padding: 34px 25px;
    }

    .v2-booking-cta-buttons {
        flex-direction: column;
    }

    .v2-booking-cta-buttons a {
        width: 100%;
    }
}

/* Ajustar correo largo en la página Solicitar Cita */

.v2-booking-info > a[href^="mailto:"] span {
    font-size: 0.84rem;
    letter-spacing: -0.02em;
}

/* =========================================================
   PÁGINA DE FORMULARIOS
   ========================================================= */


/* PORTADA */

.v2-forms-page .v2-forms-hero {
    position: relative;

    min-height: 590px;
    padding: 58px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 20%,
            rgba(212, 175, 55, 0.20),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(102, 59, 31, 0.30),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505,
            #18100c 62%,
            #3a2215
        );
}

.v2-forms-page .v2-forms-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(330px, 0.92fr);

    align-items: center;

    gap: 70px;
}

.v2-forms-page .v2-forms-hero-content {
    position: relative;
    z-index: 2;
}

.v2-forms-page .v2-forms-hero-content h1 {
    max-width: 730px;

    margin: 16px 0 20px;

    color: #ffffff;

    font-size: clamp(2.6rem, 4.3vw, 4rem);
    line-height: 1.08;
}

.v2-forms-page .v2-forms-hero-content > p {
    max-width: 640px;

    margin-bottom: 27px;

    color: #f0dfca;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* TARJETA PRINCIPAL DE LA PORTADA */

.v2-forms-hero-card {
    position: relative;

    width: min(445px, 100%);

    justify-self: end;

    padding: 40px 36px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(7px);
}

.v2-forms-hero-card::before {
    content: "";

    position: absolute;
    inset: 12px;

    pointer-events: none;

    border: 1px solid rgba(244, 213, 106, 0.18);
    border-radius: 25px;
}

.v2-forms-main-icon {
    position: relative;

    width: 76px;
    height: 76px;

    margin-bottom: 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    font-size: 2rem;

    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );

    box-shadow:
        0 16px 35px rgba(212, 175, 55, 0.28);
}

.v2-forms-hero-card h2 {
    position: relative;

    margin-bottom: 14px;

    color: #ffffff;

    font-size: 1.65rem;
}

.v2-forms-hero-card > p {
    position: relative;

    margin-bottom: 25px;

    color: #eadbc8;

    line-height: 1.75;
}

.v2-forms-hero-features {
    position: relative;

    display: grid;
    gap: 14px;
}

.v2-forms-hero-features span {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #f3e6d6;

    line-height: 1.5;
}

.v2-forms-hero-features i {
    width: 22px;

    color: var(--gold-light, #f6d65c);

    text-align: center;
}


/* SECCIÓN DE FORMULARIOS */

.v2-forms-section {
    scroll-margin-top: 105px;

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(212, 175, 55, 0.10),
            transparent 26%
        ),
        #fffdf9;
}

.v2-forms-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: stretch;

    gap: 26px;
}


/* TARJETAS */

.v2-form-option-card {
    position: relative;

    min-height: 445px;

    padding: 36px 31px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 30px;

    background: var(--cream, #fbf7ef);

    box-shadow:
        0 20px 52px rgba(75, 43, 19, 0.12);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-form-option-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark, #a87808),
            var(--gold-light, #f6d65c)
        );
}

.v2-form-option-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold, #d4af37);

    box-shadow:
        0 29px 65px rgba(75, 43, 19, 0.18);
}

.v2-form-option-icon {
    width: 72px;
    height: 72px;

    margin-bottom: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #111111;

    font-size: 1.95rem;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );

    box-shadow:
        0 15px 32px rgba(212, 175, 55, 0.27);
}

.v2-form-tag {
    width: fit-content;

    margin-bottom: 16px;
    padding: 7px 13px;

    color: #6d4700;

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    border-radius: 999px;

    background: rgba(212, 175, 55, 0.18);
}

.v2-form-option-card h3 {
    margin-bottom: 16px;

    color: var(--text, #21170f);

    font-size: 1.35rem;
    line-height: 1.4;
}

.v2-form-option-card p {
    margin-bottom: 28px;

    color: var(--muted, #6d5a4c);

    line-height: 1.8;
}

.v2-form-option-card .v2-btn-primary {
    width: 100%;

    margin-top: auto;

    justify-content: center;

    text-align: center;
}


/* AYUDA PARA ELEGIR */

.v2-forms-help-section {
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(212, 175, 55, 0.16),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #050505,
            #1c120d 66%,
            #3a2215
        );
}

.v2-forms-help-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(260px, 0.8fr);

    align-items: center;

    gap: 55px;
}

.v2-forms-help-grid h2 {
    max-width: 760px;

    margin: 16px 0 14px;

    color: #ffffff;

    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.16;
}

.v2-forms-help-grid p {
    max-width: 700px;

    color: #eadbc8;

    line-height: 1.75;
}

.v2-forms-help-buttons {
    display: flex;
    flex-direction: column;

    gap: 15px;
}


/* TABLETA */

@media (max-width: 1050px) {

    .v2-forms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-forms-grid .v2-form-option-card:last-child {
        grid-column: 1 / -1;

        width: min(560px, 100%);

        justify-self: center;
    }
}


@media (max-width: 950px) {

    .v2-forms-page .v2-forms-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .v2-forms-page .v2-forms-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-forms-hero-card {
        width: min(500px, 100%);

        justify-self: center;

        text-align: left;
    }

    .v2-forms-help-grid {
        grid-template-columns: 1fr;
    }

    .v2-forms-help-buttons {
        width: 100%;

        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .v2-forms-page .v2-forms-hero {
        min-height: auto;

        padding: 58px 0;
    }

    .v2-forms-page .v2-forms-hero-content h1 {
        font-size: 2.45rem;
    }

    .v2-forms-hero-card {
        padding: 31px 24px;
    }

    .v2-forms-grid {
        grid-template-columns: 1fr;
    }

    .v2-forms-grid .v2-form-option-card:last-child {
        grid-column: auto;

        width: 100%;
    }

    .v2-form-option-card {
        min-height: auto;

        padding: 32px 25px;
    }

    .v2-forms-help-buttons {
        flex-direction: column;
    }

    .v2-forms-help-buttons a {
        width: 100%;
    }
}

/* =========================================================
   PÁGINA DE CONTACTO
   ========================================================= */


/* PORTADA */

.v2-contact-page .v2-contact-hero {
    position: relative;

    min-height: 590px;
    padding: 58px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 20%,
            rgba(212, 175, 55, 0.20),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(102, 59, 31, 0.30),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505,
            #18100c 62%,
            #3a2215
        );
}

.v2-contact-page .v2-contact-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(350px, 0.92fr);

    align-items: center;

    gap: 70px;
}

.v2-contact-page .v2-contact-hero-content {
    position: relative;
    z-index: 2;
}

.v2-contact-page .v2-contact-hero-content h1 {
    max-width: 720px;

    margin: 16px 0 20px;

    color: #ffffff;

    font-size: clamp(2.6rem, 4.3vw, 4rem);
    line-height: 1.08;
}

.v2-contact-page .v2-contact-hero-content > p {
    max-width: 650px;

    margin-bottom: 27px;

    color: #f0dfca;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* TARJETA DE INFORMACIÓN DE LA PORTADA */

.v2-contact-hero-card {
    position: relative;

    width: min(470px, 100%);

    justify-self: end;

    padding: 38px 34px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(7px);
}

.v2-contact-hero-card::before {
    content: "";

    position: absolute;
    inset: 12px;

    pointer-events: none;

    border: 1px solid rgba(244, 213, 106, 0.18);
    border-radius: 25px;
}

.v2-contact-main-icon {
    position: relative;

    width: 76px;
    height: 76px;

    margin-bottom: 22px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    font-size: 2rem;

    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );

    box-shadow:
        0 16px 35px rgba(212, 175, 55, 0.28);
}

.v2-contact-hero-card h2 {
    position: relative;

    margin-bottom: 23px;

    color: #ffffff;

    font-size: 1.65rem;
}

.v2-contact-hero-card > a,
.v2-contact-hero-card > p {
    position: relative;

    margin-bottom: 14px;
    padding: 15px;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.05);

    line-height: 1.55;
}

.v2-contact-hero-card > a {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.v2-contact-hero-card > a:hover {
    transform: translateY(-3px);

    border-color: var(--gold, #d4af37);

    background: rgba(255, 255, 255, 0.085);
}

.v2-contact-hero-card > a > i,
.v2-contact-hero-card > p > i {
    width: 39px;
    height: 39px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    color: #111111;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );
}

.v2-contact-hero-card span {
    min-width: 0;

    overflow-wrap: anywhere;

    font-weight: 600;
}

.v2-contact-hero-card small {
    margin-bottom: 3px;

    display: block;

    color: #d8c6af;

    font-size: 0.74rem;
    font-weight: 400;
}


/* SECCIÓN DEL FORMULARIO */

.v2-contact-section {
    scroll-margin-top: 105px;

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(212, 175, 55, 0.10),
            transparent 26%
        ),
        #fffdf9;
}

.v2-contact-layout {
    display: grid;

    grid-template-columns:
        minmax(285px, 0.72fr)
        minmax(0, 1.28fr);

    align-items: start;

    gap: 35px;
}


/* INFORMACIÓN LATERAL */

.v2-contact-info {
    position: sticky;
    top: 125px;

    padding: 38px 32px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(212, 175, 55, 0.17),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #080808,
            #26180f
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}

.v2-contact-info h3 {
    margin: 17px 0 13px;

    color: #ffffff;

    font-size: 1.75rem;
    line-height: 1.35;
}

.v2-contact-info > p {
    margin-bottom: 28px;

    color: #eadbc8;

    line-height: 1.75;
}

.v2-contact-info > a {
    margin-bottom: 15px;
    padding: 17px 16px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.v2-contact-info > a:hover {
    transform: translateY(-4px);

    border-color: var(--gold, #d4af37);

    background: rgba(255, 255, 255, 0.09);
}

.v2-contact-info > a > i {
    width: 42px;
    height: 42px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    color: #111111;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );
}

.v2-contact-info > a span {
    min-width: 0;

    overflow-wrap: anywhere;

    font-weight: 600;
}

.v2-contact-info > a small {
    margin-bottom: 3px;

    display: block;

    color: #d8c6af;

    font-size: 0.75rem;
    font-weight: 400;
}

.v2-contact-info > a[href^="mailto:"] span {
    font-size: 0.84rem;
    letter-spacing: -0.02em;
}


/* REDES SOCIALES DE CONTACTO */

.v2-contact-social {
    margin-top: 27px;
    padding-top: 24px;

    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.v2-contact-social h4 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 1rem;
}

.v2-contact-social > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.v2-contact-social a {
    width: 46px;
    height: 46px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold, #d4af37),
            var(--gold-light, #f6d65c)
        );

    box-shadow:
        0 12px 28px rgba(212, 175, 55, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.v2-contact-social a:hover {
    transform: translateY(-5px) scale(1.04);

    box-shadow:
        0 17px 34px rgba(212, 175, 55, 0.34);
}

.v2-contact-social .fa-instagram,
.v2-contact-social .fa-whatsapp {
    color: #000000;

    font-size: 1.12rem;

    -webkit-text-stroke: 0.3px #000000;
}


/* TARJETA DEL JOTFORM */

.v2-contact-form-card {
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 25px 65px rgba(71, 43, 20, 0.13);
}

.v2-contact-form-header {
    padding: 34px 36px 28px;

    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    background:
        linear-gradient(
            135deg,
            #fffdf8,
            #f8eedc
        );
}

.v2-contact-form-header > span {
    color: var(--gold-dark, #a87808);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v2-contact-form-header h3 {
    margin: 9px 0 8px;

    color: var(--text, #21170f);

    font-size: 1.65rem;
}

.v2-contact-form-header p {
    color: var(--muted, #6d5a4c);

    line-height: 1.7;
}


/* FORMULARIO INTEGRADO */

.v2-contact-jotform-frame {
    width: 100%;
    min-height: 1000px;

    display: block;

    border: 0;

    background: #ffffff;
}


/* LLAMADO FINAL */

.v2-contact-cta {
    padding: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 45px;

    color: #ffffff;

    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 36px;

    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(212, 175, 55, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #070707,
            #20150e 65%,
            #4a2c1a
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35);
}

.v2-contact-cta h2 {
    max-width: 700px;

    margin: 14px 0 12px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
}

.v2-contact-cta p {
    color: #eadbc8;

    line-height: 1.7;
}

.v2-contact-cta-buttons {
    min-width: 220px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* TABLETA */

@media (max-width: 950px) {

    .v2-contact-page .v2-contact-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .v2-contact-page .v2-contact-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-contact-hero-card {
        width: min(520px, 100%);

        justify-self: center;

        text-align: left;
    }

    .v2-contact-layout {
        grid-template-columns: 1fr;
    }

    .v2-contact-info {
        position: static;
    }

    .v2-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-contact-cta-buttons {
        width: 100%;

        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .v2-contact-page .v2-contact-hero {
        min-height: auto;

        padding: 58px 0;
    }

    .v2-contact-page .v2-contact-hero-content h1 {
        font-size: 2.45rem;
    }

    .v2-contact-hero-card,
    .v2-contact-info {
        padding: 31px 24px;
    }

    .v2-contact-form-header {
        padding: 29px 23px 23px;
    }

    .v2-contact-jotform-frame {
        min-height: 1150px;
    }

    .v2-contact-cta {
        padding: 34px 25px;
    }

    .v2-contact-cta-buttons {
        flex-direction: column;
    }

    .v2-contact-cta-buttons a {
        width: 100%;
    }
}

/* =========================================================
   AJUSTE DE FLECHAS DEL CARRUSEL EN CELULAR
   Evita que cubran los botones de la portada
   ========================================================= */

@media (max-width: 650px) {

    .v2-slider-arrow {
        top: 70%;

        width: 42px;
        height: 42px;
    }

    .v2-previous {
        left: 12px;
    }

    .v2-next {
        right: 12px;
    }
}

/* =========================================================
   LOGO GRANDE — REACCIÓN AL PASAR EL MOUSE
   ========================================================= */

.v2-slide-logo .v2-logo-float img {
    transform-origin: center;
    transition:
        transform 0.32s ease,
        filter 0.32s ease;
    will-change: transform;
}

.v2-slide-logo .v2-logo-float:hover img {
    transform: scale(1.045);

    filter:
        drop-shadow(0 22px 32px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 19px rgba(212, 175, 55, 0.22));
}

@media (prefers-reduced-motion: reduce) {
    .v2-slide-logo .v2-logo-float img {
        transition: none;
    }

    .v2-slide-logo .v2-logo-float:hover img {
        transform: none;
    }
}

/* =========================================================
   LOGO PEQUEÑO DEL MENÚ — EFECTO AL PASAR EL MOUSE
   ========================================================= */

.v2-brand img {
    transition:
        scale 0.28s ease,
        filter 0.28s ease,
        box-shadow 0.28s ease;
}

.v2-brand:hover img,
.v2-brand:focus-visible img {
    scale: 1.08;

    filter:
        brightness(1.06)
        drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 12px rgba(212, 175, 55, 0.28));

    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.32),
        0 13px 30px rgba(0, 0, 0, 0.42);
}

@media (prefers-reduced-motion: reduce) {
    .v2-brand img {
        transition: none;
    }

    .v2-brand:hover img,
    .v2-brand:focus-visible img {
        scale: 1;
    }
}

/* =========================================================
   APARICIÓN SUAVE DE SECCIONES AL BAJAR
   ========================================================= */

.v2-reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.v2-reveal.v2-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .v2-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   FOTOS DEL CARRUSEL — EFECTO SUAVE AL PASAR EL MOUSE
   ========================================================= */

.v2-person-visual img,
.v2-event-visual img {
    transition:
        transform 0.38s ease,
        filter 0.38s ease;
    will-change: transform;
}

.v2-person-visual:hover img,
.v2-event-visual:hover img {
    transform: scale(1.035);

    filter:
        brightness(1.04)
        drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

@media (prefers-reduced-motion: reduce) {
    .v2-person-visual img,
    .v2-event-visual img {
        transition: none;
    }

    .v2-person-visual:hover img,
    .v2-event-visual:hover img {
        transform: none;
        filter: none;
    }
}


/* =========================================================
   AJUSTES APROBADOS POR N.O.C. RELEASE ACCOUNTING
   ========================================================= */

/* Presentación de Noelia en Inicio */
.v2-profile-role {
    color: var(--gold-light) !important;
    font-weight: 700;
}

.v2-profile-quote {
    margin: 24px 0 8px;
    padding: 20px 22px;
    color: #fff7e8;
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.75;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, 0.06);
}

.v2-profile-image {
    position: relative;
}

.v2-profile-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    border: 1px solid rgba(244, 213, 106, 0.38);
    border-radius: 16px;
    background: rgba(7, 7, 7, 0.82);
    backdrop-filter: blur(10px);
}

.v2-profile-caption strong {
    color: var(--gold-light);
    font-size: 1.04rem;
}

.v2-profile-caption span {
    font-size: 0.88rem;
}

/* Cuatro ventajas solicitadas */
.v2-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cinco estadísticas solicitadas */
.v2-stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v2-stat-inline-icon {
    margin: 0 !important;
    font-size: 2.6rem !important;
}

/* Detalles de la oferta */
.v2-offer-details {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.v2-offer-details li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-weight: 700;
}

.v2-offer-details i {
    color: var(--gold-dark);
}

/* Servicios organizados por categoría */
.v2-service-category {
    scroll-margin-top: 120px;
}

.v2-service-category + .v2-service-category {
    margin-top: 82px;
    padding-top: 72px;
    border-top: 1px solid rgba(212, 175, 55, 0.30);
}

.v2-service-category-heading {
    margin-bottom: 34px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.v2-service-category-heading > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #111111;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.v2-service-category-heading h2 {
    margin-bottom: 7px;
    color: var(--text);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.v2-service-category-heading p {
    color: var(--muted);
}

.v2-services-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Formularios simples y organizados */
.v2-forms-hero-simple .v2-forms-hero-grid {
    max-width: 900px;
    grid-template-columns: 1fr;
}

.v2-form-category-list {
    margin-bottom: 28px;
    display: grid;
    gap: 10px;
}

.v2-form-category-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.v2-form-category-list i {
    color: var(--gold-dark);
}

/* Redes y métodos de pago */
.v2-payment-methods {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.v2-payment-methods h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.v2-payment-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.v2-payment-list span {
    min-height: 48px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 0.84rem;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.v2-payment-list i {
    color: var(--gold-light);
}

@media (max-width: 1100px) {
    .v2-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .v2-services-grid-compact {
        grid-template-columns: 1fr;
    }

    .v2-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .v2-benefits-grid,
    .v2-stats-grid,
    .v2-payment-list {
        grid-template-columns: 1fr;
    }

    .v2-service-category-heading {
        flex-direction: column;
    }

    .v2-profile-caption {
        position: static;
        margin: 15px;
    }

    .v2-offer-details {
        flex-direction: column;
    }
}


/* =========================================================
   AJUSTE FINAL: NAVEGACIÓN MÁS DIRECTA Y SIN BOTONES REPETIDOS
   ========================================================= */

.v2-categorized-services .v2-service-card {
    min-height: 300px;
}

.v2-categorized-services .v2-service-card > p:last-child {
    margin-bottom: 0;
}

.v2-forms-page .v2-forms-hero-simple {
    min-height: auto;
    padding: 78px 0 68px;
}

.v2-forms-page .v2-forms-hero-simple .v2-forms-hero-content > p {
    margin-bottom: 0;
}

@media (max-width: 650px) {
    .v2-forms-page .v2-forms-hero-simple {
        padding: 62px 0 54px;
    }
}

/* =========================================================
   DESTINOS DEL MENÚ DE SERVICIOS
   Mantiene visibles los títulos bajo el encabezado fijo
   ========================================================= */

.v2-service-category {
    scroll-margin-top: 118px;
}
