/* 
   ===================================
   Trama Casting IA - Landing Page CSS
   Tema: Tons pastéis claros, premium.
   ===================================
*/

:root {
    /* Color Palette */
    --clr-bg: #FFFFFF;
    --clr-bg-alt: #FFF5F2;
    /* Soft pale peach/blush */
    --clr-primary: #EFA699;
    /* Deep but soft pastel salmon/coral */
    --clr-primary-dark: #D48E83;
    --clr-secondary: #Dceeee;
    /* Pale mint/blue */
    --clr-text-main: #2C3539;
    /* Elegant dark gray */
    --clr-text-light: #6E7980;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(239, 166, 153, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

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

ul {
    list-style: none;
}

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

/* Typography styles */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
}

h1 span {
    color: var(--clr-primary);
    position: relative;
}

/* Adicionando pequena linha curva sob a palavra Moda */
h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: var(--clr-secondary);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 5px;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    color: var(--clr-text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 166, 153, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(239, 166, 153, 0.4);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-text-main);
}

.btn-secondary:hover {
    background-color: #c9e2e2;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--clr-text-main);
    background: transparent;
    color: var(--clr-text-main);
}

.btn-outline:hover {
    background: var(--clr-text-main);
    color: white;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--clr-primary);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--clr-text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}
/* --- Mobile Menu Styles (Injected via JS) --- */
.hamburger-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--clr-text-main);
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-container .btn-outline {
        display: none;
    }
    .hamburger-btn {
        display: block !important;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--clr-text-main);
    cursor: pointer;
    padding: 1rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-text-main);
    text-decoration: none;
}


/* Sections Global */
section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, var(--clr-bg-alt) 0%, var(--clr-bg) 60%);
    position: relative;
    overflow: hidden;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--clr-secondary);
    color: var(--clr-text-main);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 95%;
    z-index: 2;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    z-index: 3;
    color: var(--clr-text-main);
}

.glass-card i {
    color: var(--clr-primary);
    font-size: 1.25rem;
}

.decorative-card-1 {
    top: 15%;
    left: -5%;
    animation: float 5s ease-in-out infinite reverse;
}

.decorative-card-2 {
    bottom: 20%;
    right: -10%;
    animation: float 7s ease-in-out infinite;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    h1 span::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-image-wrapper {
        height: 500px;
    }

    .decorative-card-1,
    .decorative-card-2 {
        display: none;
        /* Hide glass cards on small screens for clarity */
    }
}

/* Feature Showcase Section */
.feature-showcase-section {
    background: var(--clr-bg);
    overflow: hidden;
    position: relative;
    padding: 8rem 0;
}

.feature-showcase-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.showcase-text {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.showcase-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.showcase-text .text-bold {
    font-weight: 700;
    color: var(--clr-text-main);
}

.showcase-text .text-light {
    font-weight: 300;
    color: var(--clr-text-light);
}

.showcase-text p {
    font-size: 1.125rem;
    color: var(--clr-text-light);
    line-height: 1.7;
}

.showcase-visuals {
    flex: 1;
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.showcase-perspective {
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) rotateZ(5deg);
    width: 120%;
    height: 150%;
}

.showcase-grid {
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.showcase-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 200px;
}

.showcase-col img {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.col-down {
    animation: scrollGridDown 30s linear infinite;
}

.col-up {
    animation: scrollGridUp 25s linear infinite;
}

.col-down-slow {
    animation: scrollGridDown 35s linear infinite;
}

@keyframes scrollGridDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-50% - 0.75rem)); } 
}

@keyframes scrollGridUp {
    0% { transform: translateY(calc(-50% - 0.75rem)); }
    100% { transform: translateY(0); }
}

@media (max-width: 968px) {
    .feature-showcase-container {
        flex-direction: column;
        text-align: center;
    }

    .showcase-text {
        max-width: 100%;
    }

    .showcase-visuals {
        width: 100%;
        /* Mantém o fade em top/bottom, pois o scroll ainda é vertical */
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        height: 450px;
        max-height: 50vh;
    }
    
    .showcase-perspective {
        /* Retira a rotação acentuada que causava distorção severa em telas pequenas e achata o grid */
        transform: scale(0.9) perspective(1000px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
        transform-origin: center center;
        width: 100%;
    }
    
    .showcase-grid {
        justify-content: center;
    }
}

/* Video Scroll Section */
.video-scroll-section {
    position: relative;
    height: 150vh; /* Altura diminuída pela metade para adequar a velocidade */
    background: var(--clr-bg);
}

.video-sticky-container {
    position: sticky;
    top: 25vh; /* Centralizando verticalmente: dexa 25% acima, 50% para o container, e sobra 25% abaixo */
    height: 50vh; /* Altura reduzida pela metade */
    width: 50%; /* Largura reduzida pela metade */
    margin: 0 auto; /* Centraliza horizontalmente */
    border-radius: var(--radius-md); /* Para ficar elegante já que não encosta mais nas bordas */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-bg);
}

/* Esconde completamente os controles e desabilita a interação */
.video-sticky-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ou 'cover' dependendo da proporção desejada */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Features */
.features-section {
    background: var(--clr-bg);
}

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

.feature-card {
    background: var(--clr-bg);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(239, 166, 153, 0.3);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--clr-primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Galeria */
.gallery-section {
    background: var(--clr-bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: white;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Catalog Grid for Thumbnails */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.model-card {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: white;
    transition: var(--transition);
}

.model-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.model-card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.model-card-info h3 {
    font-size: 1.7rem;
    margin: 0;
}

.model-card-info span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-primary);
}


/* Masonry Grid para Nossas Modelos */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.masonry-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Page Header para páginas internas */
.page-header {
    padding: 12rem 0 5rem;
    background: radial-gradient(circle at top, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
    text-align: center;
}

.model-section {
    padding-top: 4rem;
}

.model-name {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--clr-primary);
    border-bottom: 2px solid var(--clr-secondary);
    margin-bottom: 1rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

/* --- Mobile Global Improvements --- */
@media (max-width: 768px) {
    /* 1. Responsividade das Seções */
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        padding-top: 7rem;
        min-height: 0;
        padding-bottom: 3rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* 2. Adequação da Tipografia Principal */
    h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    /* 3. Botões e CTAs com toque otimizado */
    .btn {
        width: 100%;
        justify-content: center;
        min-height: 54px; /* Mais amigável ao toque */
    }

    .cta-form-wrapper {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    /* 4. Ajuste do Masonry Grid */
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    /* 5. Centralização adicional para as páginas internas */
    .catalog-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .model-card img {
        height: 400px;
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--clr-primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1.5rem;
    border-radius: 50%;
    z-index: 2002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

#lightbox-prev {
    left: 30px;
}

#lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--clr-secondary);
    top: 0;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--clr-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 0 0 4px var(--clr-bg);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
}

/* CTA & Footer */
.cta-section {
    background: var(--clr-primary);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-form-wrapper {
    max-width: 500px;
    margin: 2rem auto 0;
}

.cta-form {
    display: flex;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 0 1.5rem;
    outline: none;
    font-family: var(--font-main);
    font-size: 1rem;
    background: transparent;
}

.cta-form .btn {
    margin: 0;
}

/* Footer Element */
footer {
    background-color: var(--clr-text-main);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-icons a:hover {
    background: var(--clr-primary);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 500px) {
    .cta-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        box-shadow: none;
    }

    .cta-form input {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
}

/* Marquee Banner */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    content: "";
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--clr-bg-alt) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--clr-bg-alt) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    gap: 2rem;
}

.marquee-content .model-card {
    width: 320px;
    flex-shrink: 0;
}

.marquee-content:hover {
    animation-play-state: paused;
}

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

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

/* Nightjar Inspired Section */
.nightjar-section {
    background-color: #f3f4f6;
    /* Light gray background matching the image */
    overflow: hidden;
    padding: 8rem 0;
    /* Huge padding */
    position: relative;
    font-family: var(--font-main);
}

.nj-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 500px;
}

/* Left Content */
.nj-text-content {
    width: 30%;
    position: relative;
    z-index: 10;
}

.nj-icon-arrow {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.nj-icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 3px;
}

.nj-arrow-svg {
    width: 70px;
    height: auto;
    margin-left: 1rem;
    color: #a0a0a0;
}

.nj-text-content h3 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    /* Diminuído conforme pedido */
    line-height: 1.1;
    font-weight: 400;
    color: #a0a0a0;
    /* Light gray for the unstyled text */
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.nj-text-content h3 .underline {
    font-weight: 700;
    color: var(--clr-text-main);
    /* Dark for the emphasized text */
    position: relative;
    display: inline-block;
}

.nj-text-content h3 .underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Reduzido para afastar a linha da base da fonte */
    left: 0;
    width: 100%;
    height: 2px;
    /* Traço mais fino */
    background-color: var(--clr-text-main);
    border-radius: 2px;
}

.nj-text-content p {
    font-size: 1.125rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    max-width: 90%;
}

/* Right Grid */
.nj-grid-wrapper {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    width: 60%;
    height: 150%;
    pointer-events: none;
    z-index: 1;
}

.nj-grid-overlay {
    position: absolute;
    top: -10%;
    left: -20px;
    width: 150px;
    height: 120%;
    background: linear-gradient(to right, #f3f4f6 0%, rgba(243, 244, 246, 0) 100%);
    z-index: 5;
}

.nj-grid {
    display: flex;
    gap: 12px;
    height: 100%;
    align-items: center;
}

.nj-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 180px;
}

/* Offset columns for masonry look */
.nj-col-1 {
    transform: translateY(-5%);
}

.nj-col-2 {
    transform: translateY(10%);
}

.nj-col-3 {
    transform: translateY(-15%);
}

.nj-col-4 {
    transform: translateY(5%);
}

.nj-col img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 968px) {
    .nj-container {
        flex-direction: column;
    }

    .nj-text-content {
        width: 100%;
        text-align: center;
        margin-bottom: 4rem;
    }

    .nj-text-content p {
        margin: 0 auto;
    }

    .nj-icon-arrow {
        justify-content: center;
    }

    .nightjar-section {
        padding: 5rem 0;
    }

    .nj-grid-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: rotate(-8deg);
        width: 120%;
        height: 600px;
        margin-left: -10%;
    }

    .nj-grid-overlay {
        display: none;
    }
}

/* --- Utility Classes for Contacts & Forms --- */
.contact-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-list p {
    margin-bottom: 1rem;
}

.contact-form-container {
    background: white; 
    padding: 3rem; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 500;
}

.form-label .required {
    color: red;
}

.form-input, .form-textarea {
    width: 100%; 
    padding: 1rem; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-family: inherit; 
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-primary);
    outline: none;
}

.form-textarea {
    resize: vertical;
}

.form-actions {
    display: flex; 
    flex-direction: column; 
    gap: 1rem;
}

.btn-full {
    width: 100%;
    box-shadow: none;
}

.btn-whatsapp {
    background-color: #25D366; 
    color: white; 
    text-align: center;
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: white;
}

/* --- Video Loop Section --- */
.video-loop-section {
    width: 100%; 
    display: flex; 
    justify-content: center; 
    background: var(--clr-bg); 
    padding: 4rem 0;
}

.video-loop-section video {
    width: 100%; 
    max-width: 720px; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-strong);
}