/* ============================================
   GARRIDO CONSULTING — Premium Law Firm Website
   Navy #1E2761 | Dorado #C5A55A | Blanco | Gris
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1E2761;
    --navy-dark: #141c47;
    --navy-light: #2a3578;
    --gold: #C5A55A;
    --gold-light: #d4b96e;
    --gold-dark: #a88c45;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #E8E8E8;
    --gray-medium: #999;
    --text-dark: #222;
    --text-body: #555;
    --blue-soft: #CADCFC;
    --whatsapp: #25D366;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(197,165,90,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- BOTONES ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(197,165,90,0.4);
}
.btn--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.btn--ghost {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn--ghost:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 24px; font-size: 0.85rem; }

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header__label--light { color: var(--gold-light); }
.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-header__title--light { color: var(--white); }
.section-header__desc {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BARRA SUPERIOR
   ============================================ */
.top-bar {
    background: var(--navy-dark);
    padding: 8px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar__left {
    display: flex;
    gap: 24px;
    align-items: center;
}
.top-bar__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
}
.top-bar__link:hover { color: var(--gold); }
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar__social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar__social a {
    color: rgba(255,255,255,0.5);
    display: flex;
}
.top-bar__social a:hover { color: var(--gold); }
.top-bar__cta {
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 39, 97, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}
.header__logo-img {
    height: 50px;
    width: auto;
}
.header__menu {
    display: flex;
    gap: 8px;
    align-items: center;
}
.header__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--transition);
}
.header__link:hover, .header__link.active {
    color: var(--gold);
}
.header__dropdown {
    position: relative;
}
.header__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    background: linear-gradient(160deg, #1a2050 0%, #1E2761 60%, #242f7a 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10,15,50,0.45), 0 0 0 1px rgba(197,165,90,0.15);
    min-width: 280px;
    padding: 12px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 100;
}
.header__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 32px;
    width: 12px;
    height: 12px;
    background: #1a2050;
    transform: rotate(45deg);
    border-top: 1px solid rgba(197,165,90,0.15);
    border-left: 1px solid rgba(197,165,90,0.15);
}
.header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header__dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: var(--transition);
}
.header__dropdown-menu a .di {
    font-size: 1.05rem;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 22px;
    text-align: center;
}
.header__dropdown-menu a:hover {
    background: rgba(197,165,90,0.12);
    color: var(--gold);
    padding-left: 16px;
}
.header__dropdown-menu a:hover .di {
    transform: scale(1.2);
    opacity: 1;
}
.header__dropdown-menu a[style*="color:#C5A55A"] {
    color: var(--gold) !important;
    background: rgba(197,165,90,0.08);
}
.header__dropdown-menu a[style*="color:#C5A55A"]::before {
    background: var(--gold);
}
.dropdown-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(197,165,90,0.6);
    padding: 4px 16px 8px;
    margin: 0;
    pointer-events: none;
}
.dropdown-divider {
    border: none;
    border-top: 1px solid rgba(197,165,90,0.15);
    margin: 6px 8px;
}
.dropdown-featured {
    background: linear-gradient(90deg, rgba(197,165,90,0.15), rgba(197,165,90,0.05)) !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
    border-radius: 10px;
    margin-top: 2px;
}
.dropdown-featured::before {
    background: var(--gold) !important;
}
.dropdown-featured:hover {
    background: rgba(197,165,90,0.25) !important;
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197,165,90,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,220,252,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
/* Geometric shapes */
.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}
.hero__shape {
    position: absolute;
    border: 1px solid rgba(197,165,90,0.1);
    border-radius: 50%;
    animation: floatShape 20s linear infinite;
}
.hero__shape:nth-child(1) { width: 300px; height: 300px; top: 10%; right: 5%; animation-duration: 25s; }
.hero__shape:nth-child(2) { width: 200px; height: 200px; bottom: 20%; right: 15%; animation-duration: 20s; animation-delay: -5s; }
.hero__shape:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 30%; border-radius: 30%; animation-duration: 30s; animation-delay: -10s; }
.hero__shape:nth-child(4) { width: 100px; height: 100px; bottom: 10%; left: 5%; animation-duration: 18s; animation-delay: -3s; }

@keyframes floatShape {
    0% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(90deg) translateY(-20px); }
    50% { transform: rotate(180deg) translateY(0); }
    75% { transform: rotate(270deg) translateY(20px); }
    100% { transform: rotate(360deg) translateY(0); }
}
@keyframes heroGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 24px;
}
.hero__badge {
    display: inline-block;
    background: rgba(197,165,90,0.15);
    border: 1px solid rgba(197,165,90,0.3);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}
.hero__title .typewriter {
    color: var(--gold-light);
    border-right: 3px solid var(--gold);
    animation: blink 0.8s step-end infinite;
}
@keyframes blink {
    50% { border-color: transparent; }
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero__subtitle strong { color: var(--gold-light); }
.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}
.hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}
.hero__phone:hover { color: var(--gold); }
.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s backwards;
}
.hero__image-placeholder {
    width: 380px;
    height: 460px;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.marquee__track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee:hover .marquee__track {
    animation-play-state: paused;
}
.marquee__item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.marquee__separator {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICIOS ESTRELLA
   ============================================ */
.services-highlight {
    padding: 100px 0;
    background: var(--white);
}
.services-highlight__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-color: var(--navy);
    color: var(--white);
}
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.75); }
.service-card--featured::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(1);
}
.service-card__badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 40px;
    transform: rotate(45deg);
}
.service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197,165,90,0.1);
}
.service-card--featured .service-card__icon { background: rgba(197,165,90,0.2); }
.service-card__icon svg { stroke: var(--gold); }
.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}
.service-card__price {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
}

/* ============================================
   SOBRE MI
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--gray-light);
}
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--white);
    border: 2px dashed var(--gray);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-medium);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}
.about__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}
.about__role {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.about__text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about__text strong { color: var(--navy); }
.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 32px;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   STATS / NUMEROS
   ============================================ */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative;
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}
.stat {
    text-align: center;
}
.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    display: inline;
}
.stat__suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gold);
}
.stat__label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '\201C';
    position: absolute;
    top: 40px;
    left: 5%;
    font-size: 20rem;
    color: rgba(197,165,90,0.05);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonials__slider {
    position: relative;
    overflow: hidden;
}
.testimonials__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    min-width: 100%;
    padding: 0 60px;
    text-align: center;
}
.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}
.testimonial-card__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}
.testimonial-card__author strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}
.testimonial-card__author span {
    color: var(--gold-light);
    font-size: 0.85rem;
}
.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.testimonials__btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.testimonials__dots {
    display: flex;
    gap: 8px;
}
.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.testimonials__dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================================
   AREAS DE PRACTICA
   ============================================ */
.practice-areas {
    padding: 100px 0;
    background: var(--white);
}
.practice-areas__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.practice-area {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.practice-area:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.practice-area:hover .practice-area__icon { background: var(--gold); }
.practice-area:hover .practice-area__icon svg { stroke: var(--white); }
.practice-area__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(197,165,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.practice-area__icon svg { stroke: var(--gold); transition: var(--transition); }
.practice-area h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.practice-area p {
    font-size: 0.8rem;
    color: var(--text-body);
}

/* ============================================
   PROCESO
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--gray-light);
}
.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process__steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 0;
}
.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process__step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.process__step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.process__step p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================================
   POR QUE ELEGIRNOS
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--white);
}
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-us__card {
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray);
    transition: var(--transition);
}
.why-us__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.why-us__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(197,165,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-us__card-icon svg { stroke: var(--gold); }
.why-us__card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.why-us__card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    text-align: center;
}
.cta-band__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-band__text {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.cta-band .btn--navy { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview {
    padding: 100px 0;
    background: var(--gray-light);
}
.blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}
.blog-card__body {
    padding: 24px;
}
.blog-card__date {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card__link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card__link:hover { gap: 10px; }

/* ============================================
   CTA FINAL + MAPA
   ============================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.cta-final__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-final__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}
.cta-final__text {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.cta-final__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.cta-final__info {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 2;
}
.cta-final__info strong { color: var(--gold-light); }
.cta-final__info a { color: rgba(255,255,255,0.8); }
.cta-final__info a:hover { color: var(--gold); }
.cta-final__map iframe {
    border-radius: var(--radius-md);
    width: 100%;
    height: 400px;
    border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d1333;
    padding: 80px 0 0;
    color: rgba(255,255,255,0.6);
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
    height: 50px;
    margin-bottom: 20px;
}
.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer__social a svg { fill: rgba(255,255,255,0.6); transition: var(--transition); }
.footer__social a:hover { background: var(--gold); }
.footer__social a:hover svg { fill: var(--white); }
.footer__links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__links li { font-size: 0.88rem; }
.footer__bottom {
    padding: 24px 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.footer__legal {
    display: flex;
    gap: 24px;
}
.footer__legal a { color: rgba(255,255,255,0.5); }
.footer__legal a:hover { color: var(--gold); }

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ============================================
   ANIMACIONES DE SCROLL (data-aos)
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-highlight__grid { grid-template-columns: repeat(2, 1fr); }
    .practice-areas__grid { grid-template-columns: repeat(3, 1fr); }
    .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .cta-final__inner { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .blog-preview__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy);
        padding: 100px 32px 40px;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .header__nav.active { right: 0; }
    .header__menu {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }
    .header__link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
    }
    .header__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius-sm);
        margin: 4px 0;
        padding: 8px 0;
    }
    .header__dropdown-menu a {
        color: rgba(255,255,255,0.7);
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .header__dropdown-menu a:hover {
        background: rgba(255,255,255,0.05);
        color: var(--gold);
    }
    .header__burger { display: flex; }
    .header__actions .btn { display: none; }

    .hero__inner {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        text-align: center;
    }
    .hero__image { display: none; }
    .hero__buttons { justify-content: center; }
    .hero__phone { justify-content: center; }
    .hero { min-height: 80vh; }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__image-placeholder { height: 300px; }

    .services-highlight__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

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

    .process__steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .testimonial-card { padding: 0 20px; }

    .why-us__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .blog-preview__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer__legal { flex-wrap: wrap; justify-content: center; }

    .cookie-banner__inner { flex-direction: column; text-align: center; }

    .whatsapp-float { bottom: 20px; right: 16px; width: 56px; height: 56px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.8rem; }
    .hero__buttons { flex-direction: column; align-items: center; }
    .btn--lg { padding: 14px 28px; font-size: 0.95rem; width: 100%; justify-content: center; }
    .practice-areas__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .practice-area { padding: 24px 12px; }
    .cta-final__buttons { flex-direction: column; }
    .cta-final__buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================
   PAGINAS INTERNAS - ESTILOS COMUNES
   ============================================ */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    text-align: center;
}
.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}
.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 16px;
}
.page-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}
.page-content ul {
    margin: 16px 0;
    padding-left: 24px;
}
.page-content ul li {
    color: var(--text-body);
    margin-bottom: 8px;
    list-style: disc;
}

/* Contact form styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(197,165,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info__icon svg { stroke: var(--gold); }
.contact-info__text h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-info__text p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0;
}
.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.form-group {
    margin-bottom: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-group--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
    cursor: pointer;
}
.form-group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
}
.form-group--checkbox a { color: var(--gold); text-decoration: underline; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   DEPARTAMENTO PAGE
   ============================================ */
.dept-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.dept-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.dept-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.dept-hero__desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.dept-services {
    padding: 80px 0;
}
.dept-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dept-service-card {
    padding: 32px 24px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}
.dept-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.dept-service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(197,165,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dept-service-card__icon svg { stroke: var(--gold); }
.dept-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.dept-service-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dept-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .dept-services__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================
   CONSULTA ONLINE
   ============================================ */
.consulta-pricing {
    padding: 80px 0;
}
.consulta-pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.pricing-card--featured {
    border-color: var(--gold);
    position: relative;
}
.pricing-card--featured::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}
.pricing-card__period {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 24px;
}
.pricing-card__features {
    text-align: left;
    margin-bottom: 24px;
}
.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--gray-light);
}
.pricing-card__features li svg { stroke: var(--gold); flex-shrink: 0; }

.pricing-card__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.btn--pay {
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.pay-methods {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.pricing-card:not(.pricing-card--featured) .pay-badge {
    background: rgba(30,39,97,0.06);
    border-color: rgba(30,39,97,0.15);
    color: var(--navy);
}

.pay-badge--apple { font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.pay-badge--google { font-family: 'Google Sans', sans-serif; }

@media (max-width: 768px) {
    .consulta-pricing__grid { grid-template-columns: 1fr; }
}
