:root {
    --violet: #5C0E8B;
    --violet-dark: #3D0A5C;
    --violet-mid: #7B1FBD;
    --violet-light: #9B4DD4;
    --violet-pale: #F0E6FA;
    --white: #FFFFFF;
    --off-white: #FAF8FC;
    --gray-100: #F4F0F8;
    --gray-200: #E8E0F0;
    --gray-400: #9E90B0;
    --gray-600: #5A5070;
    --gray-800: #2A2035;
    --accent-teal: #1ABCB0;
    --accent-navy: #1A2B7C;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(92, 14, 139, 0.12);
    --shadow-hover: 0 16px 60px rgba(92, 14, 139, 0.22);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(92, 14, 139, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    box-shadow: 0 4px 24px rgba(92, 14, 139, 0.1);
}

.navbar-logo img {
    height: 38px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}

.navbar-menu a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    transition: color 0.25s;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--violet);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.navbar-menu a:hover {
    color: var(--violet);
}

.navbar-menu a:hover::after {
    transform: scaleX(1);
}

.navbar-cta {
    padding: 10px 22px;
    background: var(--violet);
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.navbar-cta::after {
    display: none !important;
}

.navbar-cta:hover {
    background: var(--violet-dark) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--violet);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet) 50%, var(--violet-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 60%;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-teal);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.45s ease both;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--white);
    color: var(--violet);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--violet-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    animation: fadeSlideUp 0.8s 0.6s ease both;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTIONS ─────────────────────────────────────────── */
section {
    padding: 96px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 16px;
}

.section-label-line {
    width: 32px;
    height: 2px;
    background: var(--violet);
    border-radius: 1px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 580px;
}

/* ── QUÉ ES ─────────────────────────────────────────── */
#que-es {
    background: var(--off-white);
}

.que-es-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.que-es-text .section-desc {
    max-width: 100%;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--violet);
    box-shadow: 0 2px 12px rgba(92, 14, 139, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.benefit-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--violet-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.benefit-text h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.que-es-visual {
    position: relative;
}

.que-es-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    /* background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%); */
    background-image: url("../img/oficinas/nucleo.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.visual-placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 5rem;
    text-align: center;
}

.visual-placeholder p {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-top: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.que-es-stat {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
}

.que-es-stat-1 {
    bottom: -20px;
    left: -30px;
}

.que-es-stat-2 {
    top: 40px;
    right: -30px;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--violet);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 2px;
}

/* ── UBICACIÓN ─────────────────────────────────────────── */
#ubicacion {
    background: var(--white);
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.address-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--gray-200);
}

.address-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--violet);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.address-text h4 {
    font-weight: 600;
    margin-bottom: 6px;
}

.address-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    border: 1px solid var(--gray-200);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── COMUNIDAD / PARTNERS ──────────────────────────────── */
#comunidad {
    background: var(--violet-dark);
    overflow: hidden;
}

#comunidad .section-label {
    color: rgba(255, 255, 255, 0.6);
}

#comunidad .section-label-line {
    background: rgba(255, 255, 255, 0.4);
}

#comunidad .section-title {
    color: var(--white);
}

#comunidad .section-desc {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
}

.comunidad-header {
    margin-bottom: 56px;
}

/* Infinite scroll track */
.partners-outer {
    overflow: hidden;
    position: relative;
    padding: 8px 0 24px;
}

.partners-outer::before,
.partners-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--violet-dark), transparent);
}

.partners-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--violet-dark), transparent);
}

.partners-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollPartners 32s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 260px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s, transform 0.3s;
    cursor: default;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

.partner-avatar {
    width: 52px;
    height: 52px;
    border-radius: 80%;
    /* background: linear-gradient(135deg, var(--violet-light), var(--accent-teal)); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.partner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* recorta la imagen para llenar el círculo */
    border-radius: 50%;
    display: block;
}

.partner-avatar.company {
    background: linear-gradient(135deg, var(--accent-navy), var(--violet-mid));
}

.partner-info {}

.partner-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.partner-role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.partner-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    align-self: flex-start;
}

.partner-tag.empresa {
    background: rgba(26, 188, 176, 0.2);
    color: var(--accent-teal);
}

.partner-tag.profesional {
    background: rgba(155, 77, 212, 0.25);
    color: var(--violet-light);
}

/* ── OFICINAS ─────────────────────────────────────────── */
#oficinas {
    background: var(--white);
}

.oficinas-header {
    margin-bottom: 48px;
}

.oficinas-slider-wrap {
    position: relative;
}

.oficinas-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

.oficinas-slider-wrap {
    overflow-y: hidden;
}

.oficinas-track::-webkit-scrollbar {
    display: none;
}

.oficina-card {
    min-width: 380px;
    max-width: 380px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 20px rgba(92, 14, 139, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.oficina-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* Carousel within each card */
.card-carousel {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--violet-dark), var(--violet-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 2.5rem;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-slide span {
    font-size: 0.75rem;
    opacity: 0.6;
    font-family: 'DM Sans', sans-serif;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--violet);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.card-body {
    padding: 24px;
}

.card-badge {
    display: inline-block;
    background: var(--violet-pale);
    color: var(--violet);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-feature {
    font-size: 0.75rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-600);
    transition: all 0.25s;
}

.slider-btn:hover {
    border-color: var(--violet);
    background: var(--violet);
    color: var(--white);
}

/* ── CONTACTO ─────────────────────────────────────────── */
#contacto {
    background: var(--gray-100);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wsp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    align-self: flex-start;
}

.wsp-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.wsp-btn svg {
    width: 24px;
    height: 24px;
}

.contacto-form {
    background: var(--off-white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contacto-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(92, 14, 139, 0.1);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--violet);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--violet-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 14, 139, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    color: var(--violet);
    font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    background: var(--violet-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 5% 36px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.875rem;
}

.footer-contact-icon {
    font-size: 1rem;
    margin-top: 1px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.25s;
}

.social-link:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--violet);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(92, 14, 139, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--violet-dark);
    transform: translateY(-4px);
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── FAQ ─────────────────────────────────────────── */
#faq {
    background: var(--off-white);
}

.faq-header {
    margin-bottom: 56px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    padding: 22px 4px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: color 0.25s;
}

.faq-question:hover {
    color: var(--violet);
}

.faq-question[aria-expanded="true"] {
    color: var(--violet);
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--violet-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.3s;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--violet);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--violet);
}

.faq-question[aria-expanded="true"] .faq-icon svg {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 4px;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-600);
}

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {

    .que-es-grid,
    .ubicacion-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .que-es-visual {
        order: -1;
    }

    .que-es-stat-2 {
        right: -10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .navbar-menu.open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 5%;
    }

    .navbar-menu.open li {
        border-bottom: 1px solid var(--gray-100);
    }

    .navbar-menu.open a {
        display: block;
        padding: 14px 0;
    }

    .hamburger {
        display: flex;
    }

    .oficina-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 72px 5%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .que-es-stat-1 {
        left: 0;
        bottom: -10px;
    }

    .que-es-stat-2 {
        right: 0;
        top: 20px;
    }

    .contacto-form {
        padding: 28px 20px;
    }
}
/* ── SEO UBICACION DESC (bajo el mapa) ─────────────────── */
.seo-ubicacion-desc {
    margin-top: 32px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 860px;
}

/* ── SEO OFICINAS DESC (bajo el slider) ─────────────────── */
.seo-oficinas-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-top: 24px;
    margin-bottom: 8px;
    max-width: 860px;
}

/* ── BLOQUE SEO EXTRA ─────────────────────────────────── */
#seo-extra {
    background: var(--white);
    padding: 80px 5%;
}

#seo-extra .section-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
    line-height: 1.25;
}

#seo-extra .section-inner p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--gray-600);
    max-width: 820px;
    margin-bottom: 18px;
}

#seo-extra .section-inner p:last-child {
    margin-bottom: 0;
}

/* ── WHATSAPP FLOTANTE ────────────────────────────────── */
.wsp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px 14px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s, box-shadow 0.25s;
    pointer-events: none;
    white-space: nowrap;
}

.wsp-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.wsp-float:hover {
    background: #1db954;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.wsp-float-label {
    display: inline;
}

@media (max-width: 600px) {
    .wsp-float {
        padding: 13px;
        border-radius: 50%;
        bottom: 90px;
        left: 20px;
    }
    .wsp-float-label {
        display: none;
    }
    .back-to-top {
        bottom: 32px;
        right: 20px;
    }
}
