/* ==========================================================================
   Design System - Espaço Training Saúde Perfeita
   ========================================================================== */

:root {
    /* Color Palette */
    --color-brand: #ccff00;
    /* Lime Green from screenshot */
    --color-brand-hover: #b3df00;
    --color-bg-main: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-card: #161616;
    --color-text-main: #ffffff;
    --color-text-muted: #888888;
    --color-white: #ffffff;
    --color-gray: #333333;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.historia, .servicos, .diferenciais, .galeria, .planos, .mapa-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

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

.mt-3 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Typography Basics */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    color: var(--color-brand);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.section-title span {
    color: var(--color-brand);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 700px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
}

.link-arrow {
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-gray);
}

.link-arrow:hover {
    color: var(--color-brand);
    border-color: var(--color-brand);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
    position: relative;
}

.btn-primary {
    background-color: var(--color-brand);
    color: #000;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 10000;
    transition: var(--transition-fast);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 45px;
    transition: var(--transition-fast);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-top {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    line-height: 1;
}

.logo-bottom {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-brand);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('images/bg-hero/ezgif-frame-001.webp') center/cover no-repeat;
}

#hero-sequence-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) grayscale(100%) blur(1px);
    z-index: 1;
}

.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, transparent 0%, var(--color-bg-main) 80%);
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 40%;
    height: 60%;
    background: var(--color-brand);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 9999 !important;
    width: 100%;
    max-width: 1280px;
    padding: 0 1.5rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-content a, .hero-content button {
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    max-width: 800px;
    color: var(--color-white) !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--color-brand);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted) !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.5;
    text-transform: none;
    font-family: var(--font-body);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
}

.stats-ticker-banner {
    background-color: var(--color-bg-main);
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-brand);
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-plus {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--color-brand);
    margin-left: 0.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 500;
}

/* Ticker */
.hero-ticker {
    background-color: var(--color-brand);
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1005;
    margin-top: 0;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 10s linear infinite;
}

.ticker-content span {
    color: #000;
    font-weight: 900;
    font-size: 1rem;
    margin: 0 2rem;
    font-family: var(--font-heading);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.historia-text .text-content {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.historia-text p {
    margin-bottom: 2rem;
}

.historia-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.historia-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 600px;
}

.gallery-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-sub-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.gallery-sub-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.historia-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.historia-gallery div:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Serviços / Features Grid
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    background-color: var(--color-bg-main);
    padding: 3.5rem 2.5rem;
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    background-color: var(--color-bg-secondary);
    transform: translateY(-5px);
    z-index: 2;
    border-color: var(--color-brand);
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-brand);
    margin-bottom: 2rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.feature-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.saber-mais {
    color: var(--color-brand);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.feature-item:hover .saber-mais {
    opacity: 1;
    transform: translateX(0);
}

.diferenciais-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dif-image {
    position: relative;
}

.dif-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
}

.image-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--color-brand);
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.checklist {
    margin-top: 3rem;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 500;
    cursor: default;
}

.chk-icon {
    width: 50px;
    height: 50px;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checklist li:hover .chk-icon {
    background: var(--color-brand);
    color: #000;
    transform: scale(1.1) rotate(10deg);
}

/* ==========================================================================
   Galeria / Espaço
   ========================================================================== */
.galeria-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.gal-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.gal-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.gal-thumb {
    overflow: hidden;
    position: relative;
}

.gal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gal-thumb:hover img {
    transform: scale(1.1);
}

.gal-main {
    overflow: hidden;
}

.gal-main img {
    transition: transform 0.8s ease;
}

.gal-main:hover img {
    transform: scale(1.03);
}

.galeria-cta {
    margin-top: 4rem;
    text-align: center;
}

/* Legacy styles removed */

/* ==========================================================================
   Planos / Categorias
   ========================================================================== */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.plano-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-bg-card);
    opacity: 1 !important;
    visibility: visible !important;
}

.plano-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(100%);
    transition: var(--transition-slow);
}

.plano-card:hover img {
    filter: brightness(0.8) grayscale(0%);
    transform: scale(1.05);
}

.plano-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.plano-info p {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 250px;
    line-height: 1.4;
}

/* Visibility Fix */
.hero-content,
.planos-grid {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==========================================================================
   Banner CTA
   ========================================================================== */
.banner-cta {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.banner-cta .container {
    max-width: 800px;
}

.banner-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-top: 1rem;
}

.banner-cta p {
    margin: 2rem auto 3rem;
}

.cta-flex {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Parallax Banner */
.banner-cta {
    background-image: url('images/hero-athlete.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 10rem 0;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.banner-cta .container {
    position: relative;
    z-index: 2;
}

/* Map */
.mapa-section {
    width: 100%;
    filter: grayscale(100%) invert(90%) contrast(100%);
    line-height: 0;
}

.mapa-section iframe {
    height: 500px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #000;
    padding: 8rem 0 2rem;
    border-top: 1px solid var(--color-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

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

.footer-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 350px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.footer-nav h3,
.footer-contact h3 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.footer-links li,
.contact-list li {
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-brand);
}

.contact-list i {
    color: var(--color-brand);
    margin-right: 0.5rem;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {

    .historia-grid,
    .diferenciais-wrapper,
    .galeria-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .historia-gallery {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .historia-gallery div {
        height: 350px;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-main);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-fast);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .historia-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .historia-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .historia-gallery {
        gap: 1rem;
    }

    .gallery-main, .gallery-sub-1, .gallery-sub-2 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .historia-gallery div {
        height: 300px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   Footer Modelo
   ========================================================================== */
.footer {
    background-color: var(--color-bg-main);
    color: var(--color-white);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-logo-box .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo-box p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-brand);
    color: #000;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--color-brand);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

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

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.footer-contact-info i {
    color: var(--color-brand);
    margin-top: 3px;
}

.footer-bottom {
    background-color: #050505;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

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

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

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
    background: #25d366;
}

.float-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid #fff;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 2px;
        background-color: var(--color-white);
        transition: var(--transition-fast);
    }

    .nav-cta {
        display: none;
    }

    .features-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .historia-gallery {
        height: auto;
    }

    .servicos {
        padding-top: 8rem;
    }

    .dif-image img,
    .gal-main img {
        height: 400px;
    }

    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 11000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border: 2px solid var(--color-brand);
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-brand);
    transform: rotate(90deg);
}

.galeria img, .sc-img img, .about-image img {
    cursor: zoom-in;
}