:root {
    --base: #506040;
    --layer-1: #405030;
    --layer-2: #304030;
    --layer-3: #305030;
    --accent: #C0E040;
    --support-dark: #000000;
    --support-light: #D0D0D0;
    --text-warm: #E8DDB6;
    --bullet-lima: #D8F25F;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--base);
    color: var(--text-warm);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-warm);
    line-height: 1.2;
}

h1.headline {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.15;
    /* line box alto o suficiente para É, Ê; o “aperto” vem do margin negativo nos spans */
    overflow: visible;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

p {
    margin-bottom: 1rem;
    color: var(--support-light);
    font-size: 1.1rem;
}

strong {
    color: var(--text-warm);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--support-light);
}

ul li::before {
    content: "•";
    color: var(--bullet-lima);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

@media (max-width: 992px) {
    .dual-col {
        grid-template-columns: 1fr;
    }
}

.py-16 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-20 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.pt-20 {
    padding-top: 8rem;
}

.pb-20 {
    padding-bottom: 8rem;
}

.pt-10 {
    padding-top: 3.5rem;
}

.pb-10 {
    padding-bottom: 3.5rem;
}

.pt-16 {
    padding-top: 6rem;
}

.pb-16 {
    padding-bottom: 6rem;
}

.py-8 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

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

.mt-8 {
    margin-top: 2rem;
}

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

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

.relative {
    position: relative;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.max-w-lg {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: var(--support-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(192, 224, 64, 0.2);
}

.btn-primary:hover {
    background-color: #d4f54d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 224, 64, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--text-warm);
    font-family: var(--font-heading);
    font-weight: 500;
    border: 1px solid var(--text-warm);
    border-radius: var(--radius-xl);
}

.btn-secondary:hover {
    background-color: var(--text-warm);
    color: var(--support-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(216, 242, 95, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(216, 242, 95, 0.1);
    transition: all var(--transition);
    z-index: 1000;
}

main {
    padding-top: var(--nav-height);
}

.header.scrolled {
    background-color: rgba(216, 242, 95, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(216, 242, 95, 0.2);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu ul li {
    padding-left: 0;
}

.nav-menu ul li::before {
    display: none;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-warm);
    opacity: 0.8;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: linear-gradient(135deg, rgba(64, 80, 48, 0.98) 0%, rgba(40, 50, 30, 0.98) 100%);
    backdrop-filter: blur(15px);
    width: 320px;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    padding-left: 0;
    margin-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    text-transform: none;
    opacity: 0.8;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    opacity: 1;
    background-color: rgba(192, 224, 64, 0.15);
    color: var(--accent);
    transform: translateX(5px);
}

.btn-nav-cta {
    background-color: var(--accent);
    color: var(--support-dark) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--radius-xl);
    opacity: 1 !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

.btn-nav-cta:hover {
    background-color: #d4f54d !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 224, 64, 0.3);
}

.arrow-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-warm);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-warm);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 860px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(64, 80, 48, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        overflow-y: auto; /* Allow scrolling on mobile menu if long */
        padding: 4rem 1rem;
    }

    .nav-menu a {
        font-size: 1.25rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none; /* Toggle via JS or keep it expanded on mobile */
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        text-align: center;
        padding: 0;
        margin-top: 1rem;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .btn-nav-cta {
        margin-top: 1rem;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section NEW */
.hero-new {
    position: relative;
    width: 100%;
    height: auto; /* Deixa a imagem ditar a altura */
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: visible;
}

.hero-content-new {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.subheadline-new {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-actions {
    margin-top: 1rem;
}

.hero-bg, .hero-bg picture {
    display: block;
    width: 100%;
    height: auto;
}

.hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Banner inteiro sem cortes */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.5) 0%, 
        transparent 50%, 
        rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content-new {
    position: absolute; /* Texto sobre o banner */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    width: 100%;
}

/* Media Query para telas menores que 768px (Mobile) */
@media (max-width: 768px) {
    .hero-new {
        min-height: auto; /* Permite que a imagem de celular defina a altura */
    }

    .hero-content-new {
        padding: 0 1.5rem;
        top: 60%; /* Ajuste fino para não cobrir o centro visual do banner mobile */
    }

    .headline-new {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .subheadline-new {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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



/* Diagnóstico Section */
.diagnostico {
    background-color: var(--base);
    position: relative;
    overflow: hidden;
}

.diagnostico-content {
    max-width: 1000px;
    margin: 0 auto;
}

.diagnostico-lead {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem); /* Padronizando para ser mais próximo da versão web no mobile */
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.diagnostico-text {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.5rem); /* Aumentando ligeiramente o mínimo para manter o impacto */
    line-height: 1.6;
    color: var(--support-light);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.diagnostico-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4vw, 2rem); /* Garantindo que o destaque seja visível */
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.diagnostico-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}
.quem-somos {
    position: relative;
    z-index: 1;
    /* Below hero so banana leaves can overlap this section when rotating */
    background-color: var(--base);
}

.mosaic-col {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.mosaic-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--base) 0%, rgba(80, 96, 64, 0.8) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0;
}

.mosaic-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--base) 0%, rgba(80, 96, 64, 0.8) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0;
}

#quem-somos .dual-col {
    grid-template-columns: 4fr 6fr;
    gap: 2rem;
    align-items: start;
}

#quem-somos .mosaic-col {
    margin-left: -2rem;
    align-self: stretch;
    max-height: 100%;
    position: relative;
}

@media (max-width: 992px) {
    #quem-somos .dual-col {
        grid-template-columns: 1fr;
    }

    #quem-somos .mosaic-col {
        margin-left: 0;
        height: 500px;
    }
}

.mosaic-wrapper {
    display: flex;
    gap: 1rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 33.333%;
    will-change: transform;
    position: absolute;
    top: 0;
}

.track-1 {
    animation: scrollUpContinuous1 25s linear infinite;
}

.track-2 {
    animation: scrollUpContinuous2 20s linear infinite;
}

.track-3 {
    animation: scrollUpContinuous3 30s linear infinite;
    left: calc(66.666% + 0.666rem);
}

.track-2 {
    left: calc(33.333% + 0.333rem);
}

.track-1 {
    left: 0;
}

.mosaic-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-track img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

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

    100% {
        transform: translateY(calc(-33.333% - 0.333rem));
    }
}

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

    100% {
        transform: translateY(calc(-33.333% - 0.333rem));
    }
}

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

    100% {
        transform: translateY(calc(-33.333% - 0.333rem));
    }
}

.title-split strong {
    color: var(--accent);
    font-size: 1.1em;
}

.audience-blocks {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audience-blocks .block {
    padding-left: 1.5rem;
    border-left: 2px solid var(--layer-3);
    transition: var(--transition);
}

.audience-blocks .block:hover {
    border-left-color: var(--accent);
}

.audience-blocks h3 {
    font-size: 1.1rem;
    color: var(--text-warm);
    margin-bottom: 0.25rem;
}

.benefits-list {
    background-color: var(--layer-1);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.benefits-list .btn-primary {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .benefits-list {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Section Divider */
.section-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 221, 182, 0.2), transparent);
    margin: 2rem auto;
    position: relative;
    z-index: 2;
}

/* Soluções Section */
.solucoes {
    position: relative;
    background-color: var(--support-dark);
}

.crossfade-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-slide.active {
    opacity: 0.3;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--base) 0%, rgba(64, 80, 48, 0.85) 20%, rgba(48, 64, 48, 0.95) 80%, var(--base) 100%);
}

.editorial-header {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-title {
    color: var(--accent);
}

.section-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--support-light);
}

/* Solutions Carousel */
.carousel-section {
    width: 100%;
    margin: 4rem 0 6rem 0;
    min-height: 600px;
    /* Ensure the section has height */
    position: relative;
    z-index: 2;
    /* Above background slides */
}

.carousel-container {
    width: 100%;
    overflow-x: hidden;
    /* Only hide horizontal overflow */
    overflow-y: visible;
    /* Allow vertical overflow for shadows/effects */
    position: relative;
    padding: 2rem 0 4rem 0;
    min-height: 500px;
    /* Ensure container has height */
}

.carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.carousel-item {
    /* Enhanced Glassmorphism Effect */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    width: 320px;
    min-height: 480px;
    margin: 0 15px;
    padding: 2.5rem 2rem 0 2rem;
    position: relative;
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    /* Subtle inner glow */
    background-blend-mode: overlay;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    padding: 1.5px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-item.active-item {
    opacity: 1;
    transform: scale(1.05);
    background: linear-gradient(135deg,
            rgba(192, 224, 64, 0.15) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(192, 224, 64, 0.35);
    box-shadow:
        0 20px 50px 0 rgba(0, 0, 0, 0.35),
        0 0 30px rgba(192, 224, 64, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.carousel-item.active-item::before {
    opacity: 1;
}

/* Hover effect on active item */
.carousel-item.active-item:hover {
    transform: scale(1.08);
    box-shadow:
        0 25px 60px 0 rgba(0, 0, 0, 0.4),
        0 0 40px rgba(192, 224, 64, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

/* Card category label */
.card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(192, 224, 64, 0.9);
    background: linear-gradient(135deg,
            rgba(192, 224, 64, 0.15) 0%,
            rgba(192, 224, 64, 0.05) 100%);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(192, 224, 64, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 0 10px rgba(192, 224, 64, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-item.active-item .card-label {
    color: rgba(192, 224, 64, 1);
    background: linear-gradient(135deg,
            rgba(192, 224, 64, 0.25) 0%,
            rgba(192, 224, 64, 0.15) 100%);
    border-color: rgba(192, 224, 64, 0.4);
    text-shadow: 0 0 15px rgba(192, 224, 64, 0.5);
}

.carousel-item h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.carousel-item ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.carousel-item ul li {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.carousel-item ul li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(192, 224, 64, 0.5);
}

.get-started {
    background: linear-gradient(135deg,
            rgba(192, 224, 64, 0.9) 0%,
            rgba(192, 224, 64, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    color: var(--support-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    box-shadow:
        0 4px 15px rgba(192, 224, 64, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.get-started:hover {
    background: linear-gradient(135deg,
            rgba(192, 224, 64, 1) 0%,
            rgba(216, 242, 95, 1) 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(192, 224, 64, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.get-started:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 15px rgba(192, 224, 64, 0.3),
        inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-graphic {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: 0;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: auto;
}

/* Glass overlay on image for better blending */
.card-graphic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.85) saturate(1.1);
}

.carousel-item.active-item .card-graphic img {
    filter: brightness(0.95) saturate(1.2);
}

.carousel-item.active-item:hover .card-graphic img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.3);
}

@media screen and (max-width: 768px) {
    .carousel-item {
        width: 280px;
        min-height: 450px;
        margin: 0 10px;
        padding: 2rem 1.5rem 0 1.5rem;
        backdrop-filter: blur(18px) saturate(180%);
        -webkit-backdrop-filter: blur(18px) saturate(180%);
    }

    .card-graphic {
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        height: 150px;
    }

    .carousel-item h2 {
        font-size: 1.3rem;
    }

    .card-desc {
        font-size: 0.9rem;
    }

    .carousel-item ul li {
        font-size: 0.85rem;
    }

    .card-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        letter-spacing: 1.2px;
    }

    .get-started {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Clientes */
.clientes {
    background-color: var(--layer-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clientes-title {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--support-light);
    opacity: 0.6;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track img {
    height: 100px;
    /* size of customer logo carousel */
    object-fit: contain;
    filter: grayscale(100%) brightness(200%) opacity(0.9);
    transition: var(--transition);
}

.marquee-track img:hover {
    filter: grayscale(0%) brightness(100%) opacity(1);
}

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

    to {
        transform: translateX(calc(-50% - 2rem));
    }

    /* Calcs exactly half since we multiplied the items by 2 */
}

/* Jeito de Fazer */
.jeito-de-fazer {
    background-color: var(--base);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 1px;
}

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

.step-card {
    background-color: var(--layer-1);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    background-color: var(--layer-2);
    transform: translateY(-5px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(192, 224, 64, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.step-card:hover .step-num {
    color: rgba(192, 224, 64, 0.4);
}

.step-content h3 {
    color: var(--accent);
}

.pilars-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.line-left {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.line-left::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 0;
    background-color: var(--accent);
    transition: height 0.6s ease;
}

.line-left.active::before {
    height: 100%;
}

.pilar h4 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

/* Caroline Costa */
.caroline-costa {
    background-color: var(--layer-2);
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.carol-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9);
}

.photo-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(40px);
}

@media (max-width: 992px) {
    .caroline-costa .dual-col {
        display: flex;
        flex-direction: column-reverse;
    }

    .photo-wrapper {
        max-width: 100%;
        height: 400px;
        margin: 0 auto;
    }
}

.carol-title {
    margin-bottom: 0.5rem;
}

.carol-subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carol-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* Prova Social */
.prova-social {
    background-color: var(--base);
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
}

/* Dual Layout for Experiencias Reais */
.experiencias-dual-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 0 auto;
}

/* Videos Section - Left Side */
.videos-section {
    width: 100%;
}

.videos-carousel-container {
    position: relative;
    overflow: hidden;
}

.videos-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.video-card {
    flex: 0 0 calc(66.666% - 0.667rem);
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 9/12.8;
    /* 20% menos altura (16 × 0.8) */
    background: var(--layer-2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-overlay-btn:hover {
    background: var(--accent);
    color: var(--support-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Testimonials Section - Right Side */
.testimonials-section {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
}

.testimonials-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(66.666% - 0.667rem);
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 9/12.8;
    /* 20% menos altura (16 × 0.8) */
    background: var(--layer-2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.carousel-nav-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.2rem;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--text-warm);
    color: var(--text-warm);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--text-warm);
    color: var(--support-dark);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .experiencias-dual-layout {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .experiencias-dual-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-card {
        flex: 0 0 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-carousel-container {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .video-card {
        flex: 0 0 100%;
    }

    .videos-carousel-track {
        gap: 0.5rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-carousel-track {
        gap: 0.5rem;
    }

    .testimonials-carousel-container {
        width: 100%;
    }
}

.insta-title {
    font-size: 1.8rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.insta-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.insta-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--layer-1) 0%, var(--layer-3) 100%);
}

.cta-headline {
    color: var(--accent);
}

.cta-bullets li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cta-bullets li::before {
    display: none;
}

.bullet-icon {
    color: var(--bullet-lima);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 224, 64, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(192, 224, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(192, 224, 64, 0);
    }
}

/* Footer */
.footer {
    background-color: #1a2418;
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
}

.footer .mt-6 {
    margin-top: 0.375rem !important;
}

.border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.reveal-item,
.card-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item.active,
.card-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-reveal .reveal-item:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-reveal .reveal-item:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-reveal .reveal-item:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-reveal .reveal-item:nth-child(5) {
    transition-delay: 0.4s;
}

.cards-grid .card-reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.cards-grid .card-reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.cards-grid .card-reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.cards-grid .card-reveal:nth-child(4) {
    transition-delay: 0.1s;
}

.cards-grid .card-reveal:nth-child(5) {
    transition-delay: 0.2s;
}

.cards-grid .card-reveal:nth-child(6) {
    transition-delay: 0.3s;
}

.grid {
    display: grid;
}

/* Instagram Mockup Styles */
.instagram-mockup {
    max-width: 935px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.instagram-mockup.reveal-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.insta-container {
    background-color: #1a3a1a;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Instagram Header */
.insta-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insta-avatar {
    flex-shrink: 0;
}

.insta-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lima);
}

.insta-info {
    flex: 1;
    color: #fff;
}

.insta-username {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    color: #fff;
}

.insta-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.insta-stats span {
    color: #fff;
}

.insta-stats strong {
    font-weight: 600;
    color: #fff;
}

.insta-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
}

.insta-bio strong {
    font-weight: 600;
    color: #fff;
}

.insta-links {
    margin-bottom: 0.5rem;
}

.insta-links a {
    color: var(--lima);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.insta-links a:hover {
    text-decoration: underline;
}

.insta-followed {
    font-size: 0.875rem;
    color: #b0b0b0;
}

.insta-followed strong {
    color: #fff;
    font-weight: 600;
}

/* Instagram Actions - alinhado com o texto após o avatar */
.instagram-mockup .insta-actions {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-left: calc(150px + 2rem);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap;
}

.instagram-mockup .insta-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.instagram-mockup .insta-btn-primary {
    background-color: var(--lima);
    color: #1a3a1a;
}

.instagram-mockup .insta-btn-primary:hover {
    background-color: #afc800;
    transform: translateY(-2px);
}

.instagram-mockup .insta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.instagram-mockup .insta-btn-seguindo.insta-btn-secondary {
    background-color: #D8F25F;
    color: #1a3a1a;
}

.instagram-mockup .insta-btn-seguindo.insta-btn-secondary:hover {
    background-color: #e4f880;
}

.instagram-mockup .insta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.instagram-mockup .insta-btn-icon {
    width: 38px;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.instagram-mockup .insta-btn-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Instagram Tabs */
.insta-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insta-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.75rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.insta-tab.active {
    color: #fff;
    border-bottom: 2px solid var(--lima);
}

/* Instagram Feed Grid */
.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 2rem;
}

.insta-post {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-post:hover img {
    transform: scale(1.05);
}

.insta-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.insta-post:hover .insta-post-overlay {
    opacity: 1;
}

.insta-post-placeholder {
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Instagram CTA */
.insta-cta {
    text-align: center;
    padding-top: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .insta-container {
        padding: 1.5rem;
    }

    .insta-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .insta-avatar img {
        width: 100px;
        height: 100px;
    }

    .insta-username {
        font-size: 1.5rem;
    }

    .insta-stats {
        justify-content: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .instagram-mockup .insta-actions {
        flex-wrap: nowrap;
        justify-content: center;
        padding-left: 0;
    }

    .instagram-mockup .insta-btn {
        flex: 0 0 auto;
        min-width: auto;
        padding: 0.5rem 1rem;
    }

    .insta-tabs {
        gap: 2rem;
    }

    .insta-feed-grid {
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .insta-avatar img {
        width: 80px;
        height: 80px;
    }

    .insta-username {
        font-size: 1.25rem;
    }

    .insta-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .insta-feed-grid {
        gap: 2px;
    }

    .insta-post-overlay {
        font-size: 0.875rem;
        gap: 1rem;
    }
}