/* ═══════════════════════════════════════════════════════════════════
   🌿 ARTE FLORA - PALETA FLORESTA MÍSTICA
   Design: Glassmorphism com cores extraídas da natureza
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Crimson+Pro:wght@400;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════════
   🎨 VARIÁVEIS - PALETA FLORESTA MÍSTICA
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* === CORES PRINCIPAIS === */
    --cor-primaria: #1a5c44;          /* Verde escuro das árvores */
    --cor-primaria-escura: #0f3d2d;   /* Verde profundo das sombras */
    --cor-secundaria: #4fb3a0;        /* Verde-água dos raios de luz */
    --cor-destaque: #e8c68c;          /* Dourado da luz solar */
    --cor-destaque-claro: #f5e6d3;    /* Bege claro da névoa */

    /* === FUNDOS === */
    --cor-fundo: #fdfbf7;             /* Off-white quente */
    --cor-fundo-alt: #f5f2ed;         /* Bege muito claro */
    --cor-fundo-card: rgba(79, 179, 160, 0.08);

    /* === TEXTOS === */
    --cor-texto: #2d3e3f;             /* Cinza-verde escuro */
    --cor-texto-suave: #6b7c7d;       /* Cinza médio */

    /* === GLASSMORPHISM === */
    --vidro: rgba(79, 179, 160, 0.08);
    --vidro-card: rgba(79, 179, 160, 0.12);
    --vidro-hover: rgba(79, 179, 160, 0.2);

    /* === SOMBRAS === */
    --shadow-sm: 0 2px 8px rgba(26, 92, 68, 0.15);
    --shadow-md: 0 8px 24px rgba(26, 92, 68, 0.25);
    --shadow-lg: 0 15px 40px rgba(26, 92, 68, 0.35);
    --shadow-glow: 0 0 40px rgba(79, 179, 160, 0.5);

    /* === GRADIENTES === */
    --gradient-hero: linear-gradient(135deg, 
        #1a5c44 0%,      /* Verde escuro */
        #4fb3a0 35%,     /* Verde-água */
        #e8c68c 70%,     /* Dourado */
        #f5e6d3 100%     /* Bege claro */
    );

    --gradient-button: linear-gradient(135deg, 
        #4fb3a0 0%, 
        #1a5c44 100%
    );

    --gradient-card: linear-gradient(135deg,
        rgba(79, 179, 160, 0.15) 0%,
        rgba(232, 198, 140, 0.15) 100%
    );

    /* === ANIMAÇÕES === */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ═══════════════════════════════════════════════════════════════════
   🔧 RESET & BASE
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
}

/* Fundo com padrão orgânico sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(79, 179, 160, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 198, 140, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 92, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: bgPulse 20s ease infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

h1, h2, h3 {
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cor-texto);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   📱 HEADER GLASSMORPHISM
   ═══════════════════════════════════════════════════════════════════ */

header {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(79, 179, 160, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-menu {
    height: 65px;
    filter: drop-shadow(0 0 10px rgba(79, 179, 160, 0.4));
    transition: all 0.4s var(--ease);
}

.logo-menu:hover {
    filter: drop-shadow(0 0 20px rgba(79, 179, 160, 0.7));
    transform: scale(1.05);
}

.menu-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-links button {
    background: rgba(79, 179, 160, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 179, 160, 0.2);
    color: var(--cor-primaria);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
}

.menu-links button:hover {
    background: rgba(79, 179, 160, 0.15);
    border-color: var(--cor-secundaria);
    color: var(--cor-primaria-escura);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.menu-icon {
    display: none;
    font-size: 2rem;
    color: var(--cor-primaria);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.menu-icon:active {
    transform: scale(0.9);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

/* ═══════════════════════════════════════════════════════════════════
   🖼️ HERO SECTION COM IMAGEM DE FLORESTA
   ═══════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 30px;
    overflow: hidden;

    /* Imagem de floresta com overlay */
    background: 
        linear-gradient(135deg, 
            rgba(15, 61, 45, 0.6) 0%, 
            rgba(79, 179, 160, 0.35) 100%
        ),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1920&q=80');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Grid sutil decorativo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(79, 179, 160, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 179, 160, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero > div {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 25px;

    /* Gradiente verde-água → dourado */
    background: linear-gradient(135deg, 
        #4fb3a0 0%,
        #e8c68c 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Sombra para destacar do fundo */
    text-shadow: 
        0 2px 20px rgba(255, 255, 255, 0.4),
        0 4px 40px rgba(79, 179, 160, 0.5);

    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    animation: textGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(79, 179, 160, 0.6));
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(79, 179, 160, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(79, 179, 160, 0.8));
    }
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: white;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;

    /* Fundo glassmorphism para legibilidade */
    background: rgba(15, 61, 45, 0.7);
    backdrop-filter: blur(12px);
    padding: 18px 35px;
    border-radius: 20px;
    border: 1px solid rgba(79, 179, 160, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero .btn-ver-mais {
    background: var(--gradient-button);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s var(--bounce);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 10px 30px rgba(79, 179, 160, 0.4),
        0 0 60px rgba(79, 179, 160, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero .btn-ver-mais::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.hero .btn-ver-mais:hover::before {
    width: 300px;
    height: 300px;
}

.hero .btn-ver-mais:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(79, 179, 160, 0.6),
        0 0 80px rgba(79, 179, 160, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   📐 SEÇÕES GERAIS
   ═══════════════════════════════════════════════════════════════════ */

section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--cor-primaria);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-destaque));
    border-radius: 10px;
}

.btn-ver-mais {
    background: transparent;
    color: var(--cor-primaria);
    border: 2px solid var(--cor-secundaria);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-ver-mais:hover {
    background: var(--cor-secundaria);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════════
   🎠 CARROSSEL
   ═══════════════════════════════════════════════════════════════════ */

.carousel-container {
    position: relative;
    margin: 0 -15px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 30px 15px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel .card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--cor-secundaria);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--cor-primaria);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s var(--ease);
}

.nav-btn:hover {
    background: var(--cor-secundaria);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-lg);
}

.prev-btn {
    left: -27px;
}

.next-btn {
    right: -27px;
}

/* ═══════════════════════════════════════════════════════════════════
   🃏 CARDS
   ═══════════════════════════════════════════════════════════════════ */

.card {
    background: white;
    border: 1px solid rgba(79, 179, 160, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 20px rgba(26, 92, 68, 0.08);
}

/* Borda superior animada */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
    transform-origin: left;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cor-secundaria);
    box-shadow: var(--shadow-lg);
}

.card-img-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--cor-fundo-alt);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    cursor: zoom-in;
}

.card:hover .card-img {
    transform: scale(1.15) rotate(2deg);
}

/* Overlay com efeito de zoom */
.card-img-container::after {
    content: '🔍 Ver detalhes';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(79, 179, 160, 0.95);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(26, 92, 68, 0.4);
}

.card:hover .card-img-container::after {
    opacity: 1;
}

.card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.75rem;
    color: white;
    background: var(--cor-primaria);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(26, 92, 68, 0.3);
    z-index: 10;
}

.badge-selecionado {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-button);
    color: white;
    font-size: 0.75rem;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(79, 179, 160, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(79, 179, 160, 0.6);
    }
}

.card-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.card-title {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--cor-primaria);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--cor-texto-suave);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.btn-add {
    background: var(--gradient-button);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s var(--ease);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-add::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.btn-add:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-add:active {
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════
   👥 SOBRE NÓS
   ═══════════════════════════════════════════════════════════════════ */

.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 35px;
    border: 1px solid rgba(79, 179, 160, 0.2);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.sobre-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 198, 140, 0.15) 0%, transparent 70%);
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.sobre-img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.6s var(--ease);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--cor-destaque);
}

.sobre-img:hover {
    transform: scale(1.03) rotate(2deg);
    box-shadow: 0 20px 60px rgba(232, 198, 140, 0.4);
}

.sobre-container h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

.sobre-container p {
    color: var(--cor-texto-suave);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════════
   💬 DEPOIMENTOS
   ═══════════════════════════════════════════════════════════════════ */

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(79, 179, 160, 0.2);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}

.depoimento-card:hover {
    transform: translateY(-8px);
    border-color: var(--cor-secundaria);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--cor-destaque);
    margin-bottom: 15px;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.depoimento-card p {
    color: var(--cor-texto-suave);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.depoimento-card small {
    color: var(--cor-secundaria);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════
   💡 CONSULTORIA
   ═══════════════════════════════════════════════════════════════════ */

.consultoria-card {
    background: var(--gradient-card);
    border: 1px solid rgba(79, 179, 160, 0.3);
    border-radius: 40px;
    padding: 70px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.consultoria-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.badge-new {
    display: inline-block;
    background: var(--cor-destaque);
    color: var(--cor-primaria-escura);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(232, 198, 140, 0.4);
}

.consultoria-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

.consultoria-card p {
    color: var(--cor-texto-suave);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    gap: 12px;
    transition: all 0.4s var(--ease);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
    font-size: 1.05rem;
}

.btn-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.consultoria-visual {
    flex: 0 0 350px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    font-size: 4rem;
    animation: floatOrganic 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(26, 92, 68, 0.2));
}

.plant-1 {
    top: 5%;
    left: 5%;
}

.plant-2 {
    bottom: 5%;
    right: 5%;
    animation-delay: 3s;
}

.bulb-container {
    font-size: 8rem;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(232, 198, 140, 0.6));
    animation: bulbGlow 3s ease-in-out infinite;
}

@keyframes floatOrganic {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-25px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 30px rgba(232, 198, 140, 0.4));
    }
    50% {
        filter: drop-shadow(0 15px 50px rgba(232, 198, 140, 0.8));
    }
}

/* ═══════════════════════════════════════════════════════════════════
   🔍 FILTROS
   ═══════════════════════════════════════════════════════════════════ */

.filtros-container {
    position: sticky;
    top: 98px;
    z-index: 900;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    padding: 25px 0;
    border-bottom: 1px solid rgba(79, 179, 160, 0.15);
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.search-input {
    width: 100%;
    padding: 18px 25px 18px 55px;
    border: 2px solid rgba(79, 179, 160, 0.2);
    border-radius: 50px;
    font-size: 1.05rem;
    outline: none;
    background: white;
    color: var(--cor-texto);
    transition: all 0.3s var(--ease);
    margin-bottom: 20px;
}

.search-input::placeholder {
    color: var(--cor-texto-suave);
}

.search-input:focus {
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 4px rgba(79, 179, 160, 0.1);
}

.cat-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--cor-secundaria) var(--cor-fundo-alt);
}

.cat-scroll::-webkit-scrollbar {
    height: 8px;
}

.cat-scroll::-webkit-scrollbar-track {
    background: var(--cor-fundo-alt);
    border-radius: 10px;
}

.cat-scroll::-webkit-scrollbar-thumb {
    background: var(--cor-secundaria);
    border-radius: 10px;
}

.cat-btn {
    padding: 12px 26px;
    border: 2px solid rgba(79, 179, 160, 0.3);
    background: white;
    color: var(--cor-primaria);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.95rem;
}

.cat-btn:hover {
    border-color: var(--cor-secundaria);
    background: rgba(79, 179, 160, 0.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cat-btn.active {
    background: var(--gradient-button);
    color: white;
    border-color: var(--cor-secundaria);
    box-shadow: var(--shadow-md);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* ═══════════════════════════════════════════════════════════════════
   🖼️ MODAIS
   ═══════════════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 20px;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.modal-content {
    background: white;
    border: 1px solid rgba(79, 179, 160, 0.2);
    width: 95%;
    max-width: 650px;
    border-radius: 30px;
    padding: 35px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(79, 179, 160, 0.15);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.modal-header h3 {
    margin: 0;
    color: var(--cor-primaria);
    font-size: 1.8rem;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--cor-texto-suave);
    transition: all 0.3s var(--ease);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-header button:hover {
    background: rgba(79, 179, 160, 0.1);
    color: var(--cor-primaria);
    transform: rotate(90deg);
}

.pasta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.pasta-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 2px solid transparent;
}

.pasta-img:hover {
    transform: scale(1.05);
    border-color: var(--cor-secundaria);
    box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════════
   🛒 CARRINHO
   ═══════════════════════════════════════════════════════════════════ */

.carrinho-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(79, 179, 160, 0.15);
}

.carrinho-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--cor-secundaria);
}

.carrinho-info {
    flex: 1;
}

.carrinho-nome {
    font-weight: 600;
    font-size: 1rem;
    color: var(--cor-primaria);
    margin-bottom: 5px;
}

.carrinho-qtd {
    font-size: 0.85rem;
    color: var(--cor-secundaria);
    background: rgba(79, 179, 160, 0.15);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
}

.btn-remove {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s var(--ease);
}

.btn-remove:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.form-compacto {
    margin-top: 25px;
    padding: 20px;
    background: rgba(79, 179, 160, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(79, 179, 160, 0.2);
}

.form-compacto p {
    margin: 0 0 12px 0;
    font-weight: 700;
    color: var(--cor-secundaria);
    font-size: 0.95rem;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-compacto {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(79, 179, 160, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    background: white;
    color: var(--cor-texto);
    transition: all 0.3s var(--ease);
}

.input-compacto::placeholder {
    color: var(--cor-texto-suave);
}

.input-compacto:focus {
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 4px rgba(79, 179, 160, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════
   ✨ ELEMENTOS EXTRAS
   ═══════════════════════════════════════════════════════════════════ */

.item-voando {
    position: fixed;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 9999;
    pointer-events: none;
    border: 3px solid var(--cor-secundaria);
    box-shadow: var(--shadow-glow);
    transition: all 0.9s var(--ease);
}

.quote-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 550px;
    background: white;
    border: 1px solid rgba(79, 179, 160, 0.2);
    box-shadow: var(--shadow-lg);
    padding: 15px 30px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    border-radius: 100px;
    color: var(--cor-texto);
    animation: slideUpBounce 0.6s var(--bounce);
}

@keyframes slideUpBounce {
    0% {
        transform: translate(-50%, 150px);
        opacity: 0;
    }
    60% {
        transform: translate(-50%, -15px);
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.zap-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    z-index: 1500;
    transition: all 0.4s var(--bounce);
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: zapPulse 2s ease-in-out infinite;
}

@keyframes zapPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.8);
    }
}

.zap-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* ═══════════════════════════════════════════════════════════════════
   ❓ FAQ
   ═══════════════════════════════════════════════════════════════════ */

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid rgba(79, 179, 160, 0.2);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--cor-secundaria);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 25px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--cor-primaria);
    transition: all 0.2s var(--ease);
    font-size: 1.05rem;
}

.faq-item summary:hover {
    background: rgba(79, 179, 160, 0.05);
}

.faq-item[open] {
    background: rgba(79, 179, 160, 0.05);
    border-color: var(--cor-secundaria);
}

.faq-item p {
    padding: 0 25px 25px 25px;
    color: var(--cor-texto-suave);
    margin: 0;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   🦶 FOOTER
   ═══════════════════════════════════════════════════════════════════ */

footer {
    background: white;
    border-top: 1px solid rgba(79, 179, 160, 0.2);
    color: var(--cor-texto-suave);
    padding: 80px 30px;
    margin-top: 120px;
}

footer h3 {
    color: var(--cor-primaria);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.footer-content p {
    line-height: 2;
    font-size: 1.05rem;
}

.footer-content a {
    color: var(--cor-secundaria);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-content a:hover {
    color: var(--cor-primaria);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 25px;
    border: 2px solid rgba(79, 179, 160, 0.2);
    transition: all 0.4s var(--ease);
}

.map-container iframe:hover {
    border-color: var(--cor-secundaria);
    box-shadow: var(--shadow-md);
}

.btn-mapa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.btn-mapa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#btn-topo {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 55px;
    height: 55px;
    background: white;
    color: var(--cor-secundaria);
    border: 2px solid var(--cor-secundaria);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
    z-index: 1400;
    transition: all 0.4s var(--ease);
    opacity: 0;
    pointer-events: none;
}

#btn-topo.visible {
    opacity: 1;
    pointer-events: all;
}

#btn-topo:hover {
    background: var(--cor-secundaria);
    color: white;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════════
   🎭 ANIMAÇÕES
   ═══════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animação de entrada dos cards */
@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card {
    animation: cardFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }

/* Modal entrance */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════════════════
   📱 RESPONSIVIDADE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }

    nav {
        padding: 12px 20px;
    }

    .logo-menu {
        height: 55px;
    }

    .menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px;
        background: white;
        border-left: 1px solid rgba(79, 179, 160, 0.2);
        flex-direction: column;
        justify-content: center;
        z-index: 3000;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.2);
        transition: right 0.4s var(--ease);
        padding-top: 90px;
    }

    .menu-links.active {
        right: 0;
    }

    .menu-links button {
        padding: 18px 35px;
        width: 85%;
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-icon {
        display: block;
        z-index: 4000;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: 450px;
        padding: 70px 20px;
        background-attachment: scroll;
    }

    .hero p {
        padding: 15px 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .sobre-container {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }

    .sobre-img {
        max-width: 100%;
        height: auto;
    }

    .consultoria-card {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }

    .consultoria-visual {
        width: 100%;
        height: 200px;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .carousel {
        padding-left: 20px;
    }

    .carousel .card {
        min-width: 290px;
        max-width: 290px;
    }

    .nav-btn {
        display: none !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .catalogo-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .input-row {
        flex-direction: column;
    }

    .quote-bar {
        flex-direction: column;
        gap: 12px;
        padding: 20px 25px;
        border-radius: 30px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .filtros-container {
        top: 82px;
    }

    .section-title {
        font-size: 1.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   🎉 FIM DO CSS - PALETA FLORESTA MÍSTICA
   ═══════════════════════════════════════════════════════════════════ */
