/* ==========================================================================
   CSS Variables - Quiet Luxury / Premium Travel
   ========================================================================== */
   :root {
    /* Colors */
    --color-bg-primary: #FAF9F6; /* Off-white elegante */
    --color-bg-secondary: #F0EBE1; /* Areia/Bege suave */
    --color-bg-dark: #2C2825; /* Marrom escuro quase preto */
    
    --color-text-primary: #1A1A1A; /* Quase preto */
    --color-text-secondary: #5A544F; /* Cinza pardacento */
    --color-text-light: #FAF9F6;
    
    --color-accent: #9A8050; /* Dourado Champagne Escuro */
    --color-accent-hover: #7A633B;
    --color-success: #25D366; /* WhatsApp */
    --color-success-hover: #1EBE5A;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing & Sizes (Mobile-First Defaults) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 5rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Modern Shadows */
    --shadow-soft: 0 10px 30px rgba(42, 42, 42, 0.04);
    --shadow-hover: 0 20px 40px rgba(42, 42, 42, 0.08);
    --shadow-float: 0 10px 20px rgba(154, 128, 80, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 768px) {
    :root {
        /* Aumentar espaçamentos no Desktop */
        --space-md: 2rem;
        --space-lg: 4rem;
        --space-xl: 6rem;
        --space-xxl: 8rem;
    }
}

/* ==========================================================================
   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-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

/* Fluid Typography */
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem; /* 18px */
    color: var(--color-text-secondary);
}

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

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md); /* Maior respiro lateral */
}

.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-sm); }
.mt-4 { margin-top: var(--space-md); }
.text-highlight { color: var(--color-accent); font-style: italic; }

/* ==========================================================================
   Components (Buttons, Badges)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem; /* Mais alto para toque no mobile */
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.125rem;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-align: center;
    text-decoration: none;
}

.btn i { font-size: 1.2em; }

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: var(--shadow-float);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(154, 128, 80, 0.25);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-text-secondary);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: rgba(154, 128, 80, 0.05);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-text:hover { gap: 0.8rem; }

.btn-large {
    padding: 1.4rem 2.5rem;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background-color: rgba(154, 128, 80, 0.1);
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
    backdrop-filter: blur(5px);
}

.badge-light {
    background-color: rgba(250, 249, 246, 0.15);
    color: var(--color-text-light);
}

/* ==========================================================================
   Header / Navbar (Glassmorphism)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 249, 246, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--shadow-soft);
    background-color: rgba(250, 249, 246, 0.95);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.nav-links {
    display: none; /* Oculto no Mobile */
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 2.5rem;
    }
    .nav-links a {
        font-weight: 500;
        font-size: 1.05rem;
        position: relative;
        color: var(--color-text-secondary);
    }
    .nav-links a:hover {
        color: var(--color-accent);
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-accent);
        transition: var(--transition-smooth);
    }
    .nav-links a:hover::after { width: 100%; }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: var(--space-xl);
    overflow: hidden;
    background-color: var(--color-bg-dark); /* Fundo escuro atrás da imagem */
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-zoom .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05); /* Começa levemente ampliado */
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Gradiente escuro para garantir leitura, focando no "Dark Luxury" */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 0.5) 100%);
}

.hero-premium-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centralizado para maior impacto visual */
    text-align: center;
    height: 100%;
    width: 100%;
}

.hero-premium-content {
    max-width: 800px;
    padding: var(--space-md) 0;
}

.hero-subtitle {
    font-family: var(--font-body);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-title {
    color: var(--color-text-light);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: var(--space-md);
    font-weight: 400; /* Serif fina = mais elegante */
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero-title .text-italic {
    font-style: italic;
    color: var(--color-accent);
}

.hero-description {
    color: rgba(250, 249, 246, 0.85);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Botões Premium Específicos da Hero */
.btn-premium-solid {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-accent);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-premium-solid:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--color-text-light);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(250, 249, 246, 0.4);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-premium-outline:hover {
    border-color: var(--color-text-light);
    background-color: rgba(250, 249, 246, 0.1);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 249, 246, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-icon {
    width: 20px;
    height: 30px;
    border: 1px solid rgba(250, 249, 246, 0.6);
    border-radius: 10px;
    position: relative;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background-color: rgba(250, 249, 246, 0.6);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 10px); opacity: 0; }
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        gap: 2rem;
    }
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg-primary);
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

@media (min-width: 600px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Emotional Section
   ========================================================================== */
.emotional-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-secondary);
}

.emotional-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.emotional-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.emotional-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transition: var(--transition-smooth);
}

.emotional-image:hover img {
    transform: scale(1.03);
}

.benefits-list {
    margin-top: var(--space-md);
    background-color: rgba(250, 249, 246, 0.5);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.benefits-list li:last-child { margin-bottom: 0; }
.benefits-list i { color: var(--color-accent); font-size: 1.5rem; margin-top: 0.1rem; }

@media (min-width: 992px) {
    .emotional-container {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

/* ==========================================================================
   Catalog Section (Cards)
   ========================================================================== */
.catalog-section {
    padding: var(--space-xxl) 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto var(--space-lg) auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.catalog-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(250, 249, 246, 0.95);
    color: var(--color-text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.card-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 500;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-content h3 { margin-bottom: 0.5rem; }
.card-content p { flex-grow: 1; margin-bottom: 1.5rem; }

@media (min-width: 768px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Bespoke (Individual) Section
   ========================================================================== */
.bespoke-section {
    padding: 0 var(--space-sm) var(--space-xxl) var(--space-sm);
}

.bespoke-container {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    background-image: url('../images/paris.png'); /* Fallback */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.bespoke-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 40, 37, 0.88);
}

.bespoke-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.bespoke-content h2 { 
    color: var(--color-text-light); 
    margin-bottom: var(--space-md); 
}

.bespoke-content p { 
    color: var(--color-text-light); 
    opacity: 0.95; 
    font-size: 1.2rem; 
    margin-bottom: var(--space-lg); 
    line-height: 1.8; 
}

.bespoke-content .btn {
    margin-top: var(--space-sm);
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-primary);
}

.location-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-secondary);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span { padding-right: 1rem; }

.faq-question i {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section { padding: var(--space-xxl) 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: var(--color-bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(154, 128, 80, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: var(--space-md);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

.testimonial-author span { font-size: 0.9rem; color: var(--color-accent); }

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.final-cta {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.final-cta h2, .final-cta p {
    color: var(--color-text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    margin: var(--space-md) 0;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(250, 249, 246, 0.7);
    font-size: 1rem;
}

.trust-badges span { display: flex; align-items: center; gap: 0.5rem; }

@media (min-width: 600px) {
    .trust-badges { flex-direction: row; justify-content: center; gap: 2rem; }
}

.footer {
    background-color: #1F1C1A; /* Mais escuro que o bg-dark para dar profundidade */
    color: var(--color-text-light);
    padding: var(--space-xl) 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p { color: rgba(250, 249, 246, 0.7); margin-top: 1rem; max-width: 300px; }

.footer-links h4 { color: var(--color-text-light); font-family: var(--font-body); margin-bottom: 1rem; }

.footer-links p {
    color: rgba(250, 249, 246, 0.7);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

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

.social-links a {
    color: var(--color-text-light);
    font-size: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-links a:hover { background-color: var(--color-accent); transform: translateY(-3px); }

.footer-bottom {
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.5);
}

@media (min-width: 768px) {
    .footer-content { grid-template-columns: 2fr 1fr; }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    background-color: var(--color-success-hover);
    transform: scale(1.1) translateY(-5px);
}

@media (min-width: 768px) {
    .floating-whatsapp { bottom: 2rem; right: 2rem; width: 65px; height: 65px; font-size: 2rem; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   About Section & Carousel
   ========================================================================== */
.about-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-content p {
    color: var(--color-text-body);
    line-height: 1.8;
}

/* --- Carousel --- */
.about-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.about-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .carousel-item {
        min-width: 33.3333%;
    }
}

.carousel-placeholder {
    width: 100%;
    padding-top: 70%; /* Aspect ratio 10:7 */
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 2px dashed rgba(0,0,0,0.1);
}

.carousel-img {
    width: 100%;
    height: auto;
    aspect-ratio: 10/7;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: block;
}

/* ==========================================================================
   Infinite Marquee Carousel
   ========================================================================== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    /* Adicionando gradientes nas bordas para efeito suave */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

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

.marquee-track .carousel-item {
    width: 280px; /* Fixed width per item */
    min-width: 280px;
    padding: 0 10px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .marquee-track .carousel-item {
        width: 350px;
        min-width: 350px;
    }
}

.marquee-track .carousel-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.marquee-track .carousel-item:hover .carousel-img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Metade da track, já que o conteúdo é duplicado */
        transform: translateX(-50%);
    }
}
