:root {
    /* AURA Transportes - Gold & Chrome Premium Palette */
    --gold-primary: #C9A227;
    --gold-light: #D4AF37;
    --gold-bright: #F0C040;
    --gold-dark: #9B7B1C;
    --gold-subtle: rgba(201, 162, 39, 0.15);

    --silver-primary: #B8C0CC;
    --silver-light: #E8ECEF;
    --silver-dark: #8A929E;
    --chrome: #D0D8E0;

    /* Dark Premium Backgrounds */
    --dark-900: #07070D;
    --dark-800: #0D0D18;
    --dark-700: #111120;
    --dark-600: #181828;
    --dark-500: #1E1E32;
    --dark-400: #252540;
    --dark-300: #2E2E50;

    /* Text Colors */
    --text-primary: #F0F0F5;
    --text-secondary: #B8C0CC;
    --text-muted: #6E7688;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A227 0%, #F0C040 50%, #C9A227 100%);
    --gradient-gold-v: linear-gradient(180deg, #F0C040 0%, #C9A227 50%, #9B7B1C 100%);
    --gradient-chrome: linear-gradient(135deg, #8A929E 0%, #E8ECEF 50%, #8A929E 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-700) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(7,7,13,0.97) 0%, rgba(13,13,24,0.92) 60%, rgba(25,20,5,0.90) 100%);
    --gradient-card: linear-gradient(145deg, var(--dark-600) 0%, var(--dark-500) 100%);
    --gradient-gold-text: linear-gradient(135deg, #C9A227, #F0C040, #D4AF37);

    /* Borders */
    --border-gold: rgba(201, 162, 39, 0.35);
    --border-gold-bright: rgba(240, 192, 64, 0.6);
    --border-dark: rgba(255, 255, 255, 0.06);

    /* Shadows */
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);
    --shadow-gold-lg: 0 16px 56px rgba(201, 162, 39, 0.35);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-dark-lg: 0 20px 80px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1240px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--dark-800);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.93); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.7), 0 0 80px rgba(201, 162, 39, 0.2); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 162, 39, 0.3); }
    50% { border-color: rgba(240, 192, 64, 0.8); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in.visible {
    opacity: 1;
}

/* Gold Text Utility */
.gold-text {
    background: var(--gradient-gold-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

/* ─── NAVBAR ─── */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(7, 7, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 162, 39, 0.2), 0 4px 32px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 160px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.4));
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(240, 192, 64, 0.7));
    transform: scale(1.03);
}

.footer-logo {
    height: 170px !important;
}

@media (max-width: 768px) {
    .logo-img { height: 100px; }
    .footer-logo { height: 110px !important; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--silver-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 13px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-bright);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-900);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid var(--border-gold-bright);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--gradient-gold);
    color: var(--dark-900);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.btn-hero {
    padding: 22px 52px;
    font-size: 18px;
    background: var(--gradient-gold);
    color: var(--dark-900);
    font-weight: 800;
    box-shadow: var(--shadow-gold-lg);
    border-radius: 12px;
    letter-spacing: 0.02em;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.5);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--gradient-gold);
    color: var(--dark-900);
    font-weight: 700;
    border-radius: 8px;
    box-shadow: var(--shadow-gold);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=2070') center/cover;
    color: white;
    padding: 60px 0 140px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(7, 7, 13, 0.97) 0%, rgba(13, 13, 24, 0.93) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--dark-800));
    z-index: 1;
}

.hero-overlay { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 0 24px;
}

/* Gold decorative line above title */
.hero-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 32px;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(201, 162, 39, 0.6);
}

.hero-label {
    display: inline-block;
    background: var(--gold-subtle);
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInUp 1s ease 0.1s backwards;
}

.hero-title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    animation: fadeInUp 1s ease 0.3s backwards;
    color: var(--text-primary);
}

.hero-title span {
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
}

.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 24px);
    margin-bottom: 52px;
    opacity: 0.85;
    font-weight: 400;
    line-height: 1.65;
    animation: fadeInUp 1s ease 0.5s backwards;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--silver-primary);
}

.hero .btn-hero {
    animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 72px;
    animation: fadeInUp 1s ease 0.9s backwards;
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
    font-family: 'Poppins', sans-serif;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid var(--border-gold-bright);
    border-radius: 24px;
    position: relative;
}

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

/* ─── HIGHLIGHTS ─── */
.highlights {
    padding: 80px 0;
    background: var(--dark-800);
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.highlight-card {
    background: var(--gradient-card);
    padding: 44px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-slow);
    border: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.5;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    border-color: var(--border-gold-bright);
    animation: glowPulse 2s ease-in-out infinite;
}

.highlight-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-900);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.highlight-icon svg { stroke-width: 2.5; }

.highlight-icon i {
    font-size: 30px;
    color: var(--dark-900);
    line-height: 1;
}

.service-icon i {
    font-size: 30px;
    color: var(--dark-900);
    line-height: 1;
}

.service-benefits i {
    color: var(--gold-bright);
    font-size: 17px;
    flex-shrink: 0;
}

.promise-item i {
    color: var(--gold-bright);
    font-size: 20px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.info-item > i {
    color: var(--gold-bright);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 4px;
    width: 22px;
    text-align: center;
}

.testimonial-rating i {
    color: var(--gold-bright);
    font-size: 16px;
}

.whatsapp-float i {
    font-size: 30px;
}

.btn i {
    font-size: 15px;
}

.social-links a i {
    font-size: 17px;
}

.btn-nav i {
    font-size: 16px;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(-8deg) scale(1.15);
    box-shadow: var(--shadow-gold-lg);
}

.highlight-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-badge {
    display: inline-block;
    background: var(--gold-subtle);
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-chrome);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.gold {
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── SERVICES ─── */
.services {
    padding: var(--section-padding);
    background: var(--dark-700);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

.service-card {
    background: var(--gradient-card);
    padding: 52px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-slow);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-gold), var(--shadow-dark-lg);
    border-color: var(--border-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-900);
    margin-bottom: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.service-icon svg { stroke-width: 2.5; }

.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.12);
    box-shadow: var(--shadow-gold-lg);
}

.service-title {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 15px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 36px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.service-benefits li:last-child { border-bottom: none; }

.service-benefits svg {
    color: var(--gold-bright);
    flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
    padding: var(--section-padding);
    background: var(--dark-800);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-card);
    transition: var(--transition-slow);
    cursor: pointer;
    border: 1px solid var(--border-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.85) saturate(0.9);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(7, 7, 13, 0.9) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before { opacity: 1; }

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    border-color: var(--border-gold);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.7) saturate(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    color: white;
    z-index: 2;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--gold-bright);
}

.gallery-overlay p {
    font-size: 13px;
    opacity: 0.8;
    color: var(--silver-light);
}

/* ─── ABOUT ─── */
.about {
    padding: var(--section-padding);
    background: var(--dark-700);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 72px;
    align-items: start;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 48px;
}

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

.promises h3,
.about-benefits h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: var(--text-primary);
    font-weight: 700;
}

.promise-grid {
    display: grid;
    gap: 16px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--gradient-card);
    border-radius: 14px;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}

.promise-item:hover {
    transform: translateX(10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.promise-item svg {
    color: var(--gold-bright);
    flex-shrink: 0;
}

.promise-item span {
    font-weight: 600;
    color: var(--text-secondary);
}

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    background: var(--gradient-card);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-dark);
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    border-color: var(--border-gold);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.4));
}

.benefit-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: var(--section-padding);
    background: var(--dark-800);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-dark);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 120px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.06);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    border-color: var(--border-gold);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold-bright);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-gold-bright);
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.author-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.4;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    margin-bottom: 18px;
    color: var(--text-primary);
    font-weight: 800;
}

.cta-content h2 span {
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
}

.cta-content p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 44px;
}

/* ─── CONTACT ─── */
.contact {
    padding: var(--section-padding);
    background: var(--dark-700);
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-info h2 span {
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-dark);
}

.info-item:last-child { border-bottom: none; }

.info-item svg {
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-item a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.info-item a:hover {
    color: var(--gold-bright);
    text-decoration: underline;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(0.85);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark-900);
    color: var(--text-muted);
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 72px 0 48px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-services ul li {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border-dark);
    font-size: 13px;
}

.footer-bottom p { color: var(--text-muted); }

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--dark-600);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--dark-900);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: glowPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.65);
}

/* ─── MOBILE MENU ─── */
.mobile-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 7, 13, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 28px;
    border-bottom: 1px solid var(--border-gold);
    animation: slideDown 0.3s ease;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 85vh;
        padding-bottom: 80px;
    }

    .hero-stats {
        gap: 36px;
    }

    .hero-stat-number {
        font-size: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-map {
        height: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0 32px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 26px;
    }

    .btn-hero {
        padding: 18px 36px;
        font-size: 16px;
    }

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