/* ========================================
   SIMPARK ESTACIONAMENTOS - MODERN DESIGN
   Design inspirado na imagem mobile exemplo
   ======================================== */

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

:root {
    --green: #6EBE44;
    --dark: #0a0a0a;
    --dark-alt: #1a1a1a;
    --dark-card: #141414;
    --white: #ffffff;
    --gray: #999999;
    --gray-light: #cccccc;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   HEADER STICKY - INSTITUCIONAL
   ======================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(110, 190, 68, 0.15);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: none;
}

/* Header mobile - transparente nas páginas internas */
@media (max-width: 768px) {
    .main-header {
        background: rgba(10, 10, 10, 0.95);
        padding: 12px 0;
        border-bottom: none;
    }

    .header-logo img {
        height: 36px;
    }

    /* Esconder apenas na HOME (que tem seu próprio header no hero) */
    .home-page .main-header {
        display: none;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 44px;
    height: 44px;
}

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

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

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

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

/* Desktop Navigation */
@media (min-width: 1024px) {
    .main-header {
        padding: 18px 0;
    }

    .header-logo img {
        height: 50px;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .desktop-nav a {
        color: var(--white);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .desktop-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--green);
        transition: width 0.3s ease;
    }

    .desktop-nav a:hover {
        color: var(--green);
    }

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

    .desktop-nav .nav-disabled {
        color: var(--gray);
        font-size: 15px;
        font-weight: 500;
        padding: 8px 0;
        cursor: not-allowed;
        opacity: 0.5;
    }

    .menu-toggle {
        display: none !important;
    }
}

/* ========================================
   HERO SECTION - FULLSCREEN APP STYLE
   ======================================== */

/* ===================
   MOBILE (default)
   =================== */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-fullscreen picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

/* Gradiente mobile - cobre parte inferior */
.hero-fullscreen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

/* Header mobile - logo e hamburguer */
.hero-header-mobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--dark);
}

.hero-logo-top {
    display: flex;
    align-items: center;
}

.hero-logo-top img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Menu hamburguer - só 3 linhas brancas */
.menu-toggle-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    -webkit-appearance: none;
    appearance: none;
}

.menu-toggle-hero span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* Área dos botões - mobile */
.hero-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 16px 16px 24px;
}

/* ===================
   DESKTOP (769px+)
   =================== */
@media (min-width: 769px) {
    .hero-header-mobile {
        display: none;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hero-btn:hover,
.hero-btn:active {
    background: rgba(110, 190, 68, 0.15);
    border-color: var(--green);
    transform: translateX(8px);
}

.hero-btn:hover::before {
    transform: scaleY(1);
}

.hero-btn-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-icon i {
    font-size: 18px;
    color: var(--white);
}

.hero-btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.hero-btn span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-btn-arrow {
    font-size: 28px;
    color: var(--green);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn-arrow {
    transform: translateX(5px);
}

/* Hero buttons disabled */
.hero-btn-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.hero-btn-disabled:hover,
.hero-btn-disabled:active {
    background: rgba(20, 20, 20, 0.9);
    border-color: rgba(110, 190, 68, 0.3);
    transform: none;
}

.hero-btn-disabled:hover::before {
    transform: scaleY(0);
}

.hero-btn-disabled:hover .hero-btn-arrow {
    transform: none;
}

.hero-footer-text {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.hero-footer-text strong {
    color: var(--green);
    font-weight: 600;
}


/* ========================================
   SIDE MENU - Compacto e Moderno
   ======================================== */

.side-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    padding: 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(110, 190, 68, 0.2);
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.side-menu-header img {
    height: 32px;
}

.menu-close {
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 8px;
    color: var(--gray);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close i {
    pointer-events: none;
}

.menu-close:hover {
    background: rgba(110, 190, 68, 0.15);
    color: var(--green);
}

.side-menu-list {
    list-style: none;
}

.side-menu-list li {
    margin-bottom: 4px;
}

.side-menu-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.side-menu-list a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: var(--green);
    opacity: 0.8;
}

.side-menu-list a:hover,
.side-menu-list a:active {
    color: var(--white);
    background: rgba(110, 190, 68, 0.1);
}

.side-menu-list a:hover i {
    opacity: 1;
}

/* Menu items disabled */
.side-menu-list .menu-disabled {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    font-weight: 400;
    cursor: not-allowed;
}

.side-menu-list .menu-disabled i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: rgba(110, 190, 68, 0.3);
}

.side-menu-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.side-menu-footer .small {
    color: var(--green);
    font-weight: 500;
    margin-top: 2px;
    font-size: 10px;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-top: 16px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.section-about {
    background: var(--dark-alt);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.cta-inline {
    margin-top: 30px;
    text-align: center;
}

.btn-saiba-mais {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background: var(--green);
    color: var(--dark);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(110, 190, 68, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--green);
}

.value-icon i {
    font-size: 48px;
}

.contact-icon i {
    font-size: 48px;
    color: var(--green);
}

.value-item h3 {
    font-size: 22px;
    color: var(--green);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

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

.service-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(110, 190, 68, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(110, 190, 68, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(110, 190, 68, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--green);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.card-link::after {
    content: ' →';
}

/* CTA Admin Section */
.section-cta-admin {
    background: linear-gradient(135deg, rgba(110, 190, 68, 0.15) 0%, rgba(110, 190, 68, 0.05) 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(110, 190, 68, 0.2);
    border-bottom: 1px solid rgba(110, 190, 68, 0.2);
}

.cta-admin-content {
    text-align: center;
}

.cta-admin-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-admin-content p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--green);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(110, 190, 68, 0.3);
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */

.section-locations {
    background: var(--dark-alt);
}

.map-container {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(110, 190, 68, 0.2);
}

.map-container iframe {
    display: block;
}

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

.location-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card:hover {
    border-color: var(--green);
    transform: translateY(-8px);
}

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

.location-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(110, 190, 68, 0.2);
    margin-bottom: 16px;
}

.location-card h3 {
    font-size: 24px;
    color: var(--green);
    margin-bottom: 12px;
}

.location-card p {
    font-size: 15px;
    color: var(--gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid rgba(110, 190, 68, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(110, 190, 68, 0.15);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-card a {
    display: block;
    color: var(--green);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--white);
}

.contact-card .small {
    font-size: 13px;
    color: var(--gray);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-alt);
    border-top: 1px solid rgba(110, 190, 68, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-brand strong {
    color: var(--green);
}

.footer-links h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 8px;
}

.footer-links .footer-disabled {
    color: rgba(153, 153, 153, 0.4);
    font-size: 14px;
    cursor: not-allowed;
}

.footer-cnpj {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-bottom strong {
    color: var(--white);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ========================================
   UNIDADES SECTION
   ======================================== */
.section-units {
    padding: 100px 0;
    background-color: #050505;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.unit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-decoration: none;
    display: block;
}

.unit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.unit-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.unit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.unit-card:hover .unit-img img {
    transform: scale(1.1);
}

.unit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green);
    color: #000;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.unit-info {
    padding: 25px;
}

.unit-info h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 8px;
}

.unit-loc {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.unit-loc i {
    color: var(--green);
    margin-right: 5px;
}

.unit-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.unit-rating i {
    color: #ffc107;
    font-size: 14px;
}

.unit-rating span {
    color: var(--white);
    font-weight: 600;
    margin-left: 5px;
}

.unit-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.unit-features li {
    font-size: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.unit-features li i {
    color: var(--green);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

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

    .hero-btn span {
        font-size: 15px;
    }

    section {
        padding: 60px 0;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

@media (min-width: 769px) {
    /* ===================
       DESKTOP HERO
       =================== */

    /* Hero abaixo do header fixo */
    .hero-fullscreen {
        height: calc(100vh - 86px);
        margin-top: 86px;
    }

    /* Imagem cobre toda a área */
    .hero-fullscreen picture {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
    }

    /* Gradiente desktop */
    .hero-fullscreen::after {
        height: 50%;
        background: linear-gradient(to top,
            #0a0a0a 0%,
            #0a0a0a 30%,
            rgba(10, 10, 10, 0.9) 55%,
            rgba(10, 10, 10, 0.5) 80%,
            transparent 100%);
    }

    /* Área dos botões desktop */
    .hero-bottom-area {
        padding: 24px 40px 32px;
    }

    /* Botões em grid 2x2 */
    .hero-buttons {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-btn {
        padding: 16px 20px;
    }

    .hero-btn span {
        font-size: 16px;
    }

    .hero-btn-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .hero-footer-text {
        margin-top: 16px;
    }

    /* ===================
       RESTO DO LAYOUT
       =================== */
    .container {
        padding: 0 40px;
    }

    .services-grid,
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (min-width: 1024px) {
    /* Botões em linha única */
    .hero-buttons {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1100px;
    }

    .hero-bg {
        object-position: center 35%;
    }

    .section-title {
        font-size: 42px;
    }

    .about-text .lead {
        font-size: 22px;
    }

    .service-card,
    .value-item,
    .location-card {
        padding: 50px 40px;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-buttons {
        max-width: 1300px;
    }

    .hero-bg {
        object-position: center 30%;
    }
}

@media (min-width: 1800px) {
    .hero-fullscreen {
        height: calc(85vh - 86px);
    }

    .hero-bg {
        object-position: center 25%;
    }
}
