/* ============================================
   VARIÁVEIS E RESET - VERSÃO PREMIUM
   ============================================ */
:root {
    --primary: #E5A800;
    --primary-dark: #D49500;
    --primary-light: #FFF3D4;
    --primary-hover: #C48500;
    --white: #FBFBFB;
    --white-pure: #FFFFFF;
    --dark: #0A0A0A;
    --dark-card: #111111;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #eeeeee;
    --success: #25D366;
    --success-dark: #075E54;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 30px rgba(229,168,0,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h2 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white-pure);
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white-pure);
}

/* ============================================
   HEADER PREMIUM
   ============================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.btn-whatsapp-nav {
    background: var(--success);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-nav:hover {
    background: var(--success-dark);
    transform: scale(1.02);
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-mobile span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}

/* ============================================
   HERO PREMIUM - TELA CHEIA
   ============================================ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 20% 50%, rgba(229,168,0,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(229,168,0,0.08) 0%, transparent 50%);
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(229,168,0,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 2rem;
    border: 1px solid rgba(229,168,0,0.3);
}

.hero-badge span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white-pure);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary);
}

.typing-text {
    display: inline-block;
    min-width: 200px;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons-premium {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-premium-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    gap: 16px;
}

.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white-pure);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-secondary:hover {
    background: rgba(229,168,0,0.1);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    80% { opacity: 0; top: 25px; }
    100% { opacity: 0; top: 8px; }
}

/* ============================================
   SERVIÇOS PREMIUM
   ============================================ */
.servicos-premium {
    padding: 100px 0;
    background: var(--white);
}

.servicos-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.servico-premium-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.servico-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 30px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.servico-premium-card:hover .card-icon-bg {
    transform: rotate(90deg);
    background: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.servico-premium-card h3 {
    margin-bottom: 1rem;
}

.servico-premium-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229,168,0,0.05), transparent);
    transition: left 0.5s ease;
}

.servico-premium-card:hover .card-hover-effect {
    left: 100%;
}

/* ============================================
   DIFERENCIAIS PREMIUM COM PARALLAX
   ============================================ */
.diferenciais-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    overflow: hidden;
}

.diferenciais-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(229,168,0,0.03)"/><circle cx="800" cy="600" r="200" fill="rgba(229,168,0,0.02)"/><circle cx="500" cy="900" r="120" fill="rgba(229,168,0,0.03)"/></svg>');
    background-repeat: repeat;
    opacity: 0.5;
    animation: floatBg 20s linear infinite;
}

@keyframes floatBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.diferenciais-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.diferencial-premium-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.diferencial-premium-card:hover {
    transform: translateY(-8px);
    background: rgba(229,168,0,0.1);
    border-color: rgba(229,168,0,0.3);
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.diferencial-premium-card h3 {
    color: var(--white-pure);
    margin-bottom: 1rem;
}

.diferencial-premium-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ============================================
   NÚMEROS PREMIUM
   ============================================ */
.numeros-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.numeros-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.numero-premium-item {
    text-align: center;
}

.numero-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    background: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-light);
}

.numero-premium-item:hover .numero-circle {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.numero-premium {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.numero-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 4px;
}

.numero-premium-item .label {
    display: block;
    color: var(--gray-dark);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ============================================
   PRODUTOS COM TABS
   ============================================ */
.produtos-premium {
    padding: 100px 0;
    background: var(--white);
}

.produtos-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-light);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white-pure);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.produto-item {
    background: var(--white-pure);
    padding: 1rem;
    text-align: center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.produto-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
    color: var(--primary-dark);
}

/* ============================================
   PROCESSO COM LINHA DO TEMPO
   ============================================ */
.processo-premium {
    padding: 100px 0;
    background: var(--primary-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    left: 50%;
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    right: -15px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(229,168,0,0.2);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -15px;
    right: auto;
}

.timeline-dot span {
    color: var(--white-pure);
    font-weight: 800;
    font-size: 1.2rem;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(229,168,0,0.3);
}

.timeline-content {
    background: var(--white-pure);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    width: 80%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:hover .timeline-content {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ============================================
   DEPOIMENTOS GLASSMORPHISM
   ============================================ */
.depoimentos-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.depoimento-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(229,168,0,0.3);
}

.depoimento-quote {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: serif;
}

.depoimento-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.depoimento-autor strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.depoimento-autor span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============================================
   CTA PREMIUM FINAL
   ============================================ */
.cta-premium {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.cta-premium-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-premium-content h2 {
    font-size: 2.5rem;
    color: var(--white-pure);
    margin-bottom: 1rem;
}

.cta-premium-content h2 span {
    position: relative;
    display: inline-block;
}

.cta-premium-content h2 span::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white-pure);
    border-radius: 3px;
}

.cta-premium-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white-pure);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta-premium:hover {
    transform: translateY(-5px);
    gap: 20px;
    box-shadow: var(--shadow-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info img {
    margin-bottom: 1rem;
}

.footer-info p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-contato h4,
.footer-endereco h4,
.footer-links h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-contato p,
.footer-endereco p {
    color: #aaa;
    margin: 0.5rem 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .servicos-premium-grid,
    .diferenciais-premium-grid,
    .numeros-premium-grid,
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-mobile {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 2rem;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .servicos-premium-grid,
    .diferenciais-premium-grid,
    .numeros-premium-grid,
    .depoimentos-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 0 !important;
        right: auto !important;
        width: 40px;
        height: 40px;
    }
    
    .timeline-content {
        width: 100%;
        text-align: left !important;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons-premium {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .numero-circle {
        width: 100px;
        height: 100px;
    }
    
    .numero-premium {
        font-size: 2rem;
    }
}
/* ============================================
   CLASSES ADICIONAIS PARA EMPRESA, SERVIÇOS, CONTATO
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white-pure);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--white-pure);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* MVV Premium */
.mvv-premium {
    padding: 80px 0;
    background: var(--primary-light);
}

.mvv-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-premium-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.mvv-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Infraestrutura Premium */
.infraestrutura-premium {
    padding: 80px 0;
    background: var(--white);
}

.infra-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.infra-premium-item ul {
    list-style: none;
}

.infra-premium-item li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.infra-premium-imagem img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.infra-premium-imagem img:hover {
    transform: scale(1.02);
}

/* Serviços Detalhes */
.servicos-detalhes {
    padding: 80px 0;
    background: var(--white);
}

.servicos-detalhes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.servico-detalhe-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.servico-detalhe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.servico-detalhe-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contato Premium */
.contato-premium {
    padding: 80px 0;
}

.contato-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-info h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contato-form-premium {
    background: var(--white-pure);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contato-form-premium h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mapa-premium {
    padding: 0 0 80px 0;
}

.mapa-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.obrigado-premium {
    padding: 180px 0 120px;
    text-align: center;
}

.obrigado-content {
    max-width: 600px;
    margin: 0 auto;
}

.obrigado-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.obrigado-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .mvv-premium-grid,
    .servicos-detalhes-grid,
    .contato-premium-grid,
    .infra-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}