/* ═══════════════════════════════════════════════════════════
   GPA ADVOCATS — Premium Landing Page Styles
   Design System: Navy Blue + Refined Blue Accent
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    --primary: #0d3051;
    --primary-dark: #08233d;
    --primary-light: #1e4a75;
    --gold: #4f7296;
    --gold-light: #7f9ab6;
    --gold-dark: #355774;
    --accent: #4f7296;
    --dark: #08233d;
    --light: #fafafa;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #eaeaea;
    --gray-300: #d3d2d2;
    --gray-400: #a09a90;
    --gray-500: #6b655c;
    --gray-600: #3a3a3a;
    --gray-700: #2d3436;
    --text: #3a3a3a;
    --text-light: #636e72;
    --font-heading: 'Staatliches', cursive;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(31, 58, 95, 0.06);
    --shadow-md: 0 4px 20px rgba(31, 58, 95, 0.08);
    --shadow-lg: 0 8px 40px rgba(31, 58, 95, 0.12);
    --shadow-xl: 0 16px 60px rgba(31, 58, 95, 0.16);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    font-size: 16px;
    overflow-x: hidden;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul { list-style: none; }

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

/* ── Typography Utilities ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-label--center {
    justify-content: center;
}

.section-label--center::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-label--light {
    color: var(--gold-light);
}

.section-label--light::before,
.section-label--light::after {
    background: var(--gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title--center {
    text-align: center;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.text-gold {
    color: var(--gold);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ═══════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    padding: 8px 0;
    position: relative;
    z-index: 990;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.top-bar__item:hover {
    color: var(--gold);
}

.top-bar__phone {
    color: var(--gold);
    font-weight: 600;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1300;
    background: var(--white);
    height: var(--header-height);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
    height: 68px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo img {
    height: 55px;
    width: auto;
    transition: height var(--transition);
}

.header.scrolled .header__logo img {
    height: 42px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    transition: transform var(--transition);
    border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav__link--cta {
    background: var(--gold);
    color: var(--primary-dark) !important;
    font-weight: 600;
    padding: 8px 24px;
    margin-left: 8px;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.header__hamburger span {
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.88) 0%,
        rgba(26, 46, 74, 0.75) 50%,
        rgba(44, 74, 110, 0.65) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__highlight {
    color: var(--gold);
    display: inline-block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* ═══════════════════════════════════════
   ABOUT / QUIÉNES SOMOS
   ═══════════════════════════════════════ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-wrapper--brand {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background:
        radial-gradient(circle at top left, rgba(79, 114, 150, 0.18), transparent 38%),
        radial-gradient(circle at bottom right, rgba(127, 154, 182, 0.18), transparent 34%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.about__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about__image-wrapper .about__brand-image {
    width: auto;
    max-width: 72%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.about__image-wrapper:hover img {
    transform: scale(1.03);
}

.about__image-wrapper--brand:hover .about__brand-image {
    transform: scale(1.03);
}

.about__image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.3), transparent);
    pointer-events: none;
}

.about__image-wrapper--brand::after {
    background: linear-gradient(to top, rgba(8, 35, 61, 0.22), transparent);
}

.about__experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(26, 46, 74, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}

.about__experience-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
}

.about__content {
    padding: 10px 0;
}

.about__text {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.about__stats {
    display: flex;
    gap: 30px;
    margin-top: 36px;
}

.about__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    flex: 1;
    transition: all var(--transition);
}

.about__stat:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about__stat:hover .about__stat-icon {
    color: var(--gold);
}

.about__stat:hover strong,
.about__stat:hover span {
    color: inherit;
}

.about__stat-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.about__stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1.2;
    transition: color var(--transition-fast);
    letter-spacing: 1px;
}

.about__stat span {
    font-size: 0.82rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

/* ═══════════════════════════════════════
   ÁREAS DE PRÁCTICA
   ═══════════════════════════════════════ */
.practices {
    padding: 100px 0;
    background: var(--gray-100);
}

.practices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.practice-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.practice-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.practice-card:hover .practice-card__image img {
    transform: scale(1.08);
}

.practice-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.6), transparent 60%);
}

.practice-card__content {
    padding: 28px;
}

.practice-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 18px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.practice-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.practice-card__list {
    margin-bottom: 20px;
}

.practice-card__list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.practice-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

.practice-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.practice-card__link:hover {
    color: var(--primary);
    gap: 12px;
}

/* ═══════════════════════════════════════
   EL EQUIPO
   ═══════════════════════════════════════ */
.team {
    padding: 100px 0;
    background: var(--white);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-card__image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image-wrapper img {
    transform: scale(1.05);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.5) 40%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.6;
}

.team-card__info {
    padding: 24px;
    text-align: center;
}

.team-card__info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-card__info > span {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-card__info p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   POR QUÉ ELEGIRNOS
   ═══════════════════════════════════════ */
.why-us {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-us__bg {
    position: absolute;
    inset: 0;
}

.why-us__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.94) 0%,
        rgba(26, 46, 74, 0.92) 100%
    );
}

.why-us__inner {
    position: relative;
    z-index: 2;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-6px);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-dark);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   RESEÑAS
   ═══════════════════════════════════════ */
.reviews {
    padding: 100px 0;
    background:
        linear-gradient(180deg, rgba(8, 35, 61, 0.03), transparent 180px),
        var(--white);
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    padding: 18px 24px;
    border: 1px solid rgba(13, 48, 81, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.reviews__score {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--primary);
}

.reviews__rating-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.reviews__stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.reviews__rating span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews__slider {
    margin-top: 50px;
}

.reviews__viewport {
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 220px;
    padding: 24px;
    background: linear-gradient(180deg, var(--white), rgba(245, 247, 250, 0.98));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(13, 48, 81, 0.09);
    transition: all var(--transition);
    box-shadow: 0 20px 45px rgba(13, 48, 81, 0.06);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 114, 150, 0.35);
    box-shadow: 0 24px 60px rgba(13, 48, 81, 0.12);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.review-card__stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.review-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
}

.review-card__author span {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.review-card__date {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.reviews__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    margin-top: 24px;
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.reviews__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(13, 48, 81, 0.12);
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reviews__btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(13, 48, 81, 0.18);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.reviews__dots .dot.active {
    width: 26px;
    background: var(--primary-light);
}

.reviews__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.reviews__link:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.reviews__note {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.92),
        rgba(26, 46, 74, 0.88)
    );
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner__inner .section-title {
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   CONTACTO
   ═══════════════════════════════════════ */
.contact {
    padding: 100px 0;
    background: var(--gray-100);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-card a {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--gold-dark);
}

.contact__map {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact__form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition-fast);
    outline: none;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b655c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer__links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 0;
}

.footer__bottom p {
    font-size: 0.82rem;
}

.footer__bottom a {
    color: var(--gold);
}

.footer__bottom a:hover {
    text-decoration: underline;
}

.footer__google {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color var(--transition-fast) !important;
}

.footer__google:hover {
    color: var(--gold) !important;
    text-decoration: none !important;
}

/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

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

    .practices__grid .practice-card:last-child {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
    }

}

@media (max-width: 768px) {
    :root {
        --header-height: 66px;
    }

    .top-bar {
        padding: 10px 0;
    }

    .top-bar__left { display: none; }

    .top-bar__right {
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .top-bar__item {
        font-size: 0.88rem;
    }

    .top-bar__phone {
        white-space: nowrap;
    }

    .header__hamburger {
        display: flex;
        position: relative;
        z-index: 1302;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
        padding: 90px 30px 30px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 1301;
        overflow-y: auto;
    }

    .header__nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .nav__link {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .hero {
        min-height: 70vh;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrapper img {
        height: 350px;
    }

    .about__stats {
        flex-direction: column;
    }

    .practices__grid {
        grid-template-columns: 1fr;
    }

    .practices__grid .practice-card:last-child {
        max-width: none;
    }

    .team__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .reviews__rating {
        width: 100%;
        border-radius: var(--radius-lg);
        padding: 18px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-banner .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .reviews__rating-copy {
        text-align: center;
    }

    .review-card {
        padding: 22px;
        min-height: 210px;
    }

    .review-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews__viewport {
        max-width: 100%;
    }

    .btn--large {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}

/* ── Mobile Menu Overlay ── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.nav-open .top-bar {
    opacity: 0;
    pointer-events: none;
}
