/* --- VARIÁVEIS DE CORES --- */
:root {
    --verde-base: #183e2c;
    --amarelo-destaque: #f2a900;
    --branco: #ffffff;
    --texto-claro: #e0e0e0;
}

/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--verde-base);
    color: var(--branco);
    overflow-x: hidden;
}

/* --- MENU DE NAVEGAÇÃO --- */
.navbar {
    background-color: rgba(24, 62, 44, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    /* Altura máxima da logo para respeitar o menu de 80px */
    max-height: 45px; 
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain; /* Garante que a imagem não distorça */
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05); /* Pequeno efeito premium ao passar o mouse */
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links {
    color: var(--branco);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    font-weight: 600;
}

.nav-links:hover { color: var(--amarelo-destaque); }

.btn-nav {
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin-left: 15px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background-color: #d19200;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 4px 0;
    transition: 0.3s;
}

/* --- RESPONSIVIDADE DO MENU --- */
@media screen and (max-width: 960px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: -100%;
        opacity: 0;
        transition: all 0.5s ease;
        background-color: var(--verde-base);
        padding-bottom: 20px;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .btn-nav { margin-left: 0; display: inline-block;}
}

/* --- HERO CARROSSEL --- */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 650px;
    width: 100%;
    overflow: hidden;
    margin-top: 0; /* Menu is fixed */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    max-width: 900px;
    text-align: center;
    margin-top: 80px; /* Compensate for fixed menu */
}

.slide-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-title span { color: var(--amarelo-destaque); }

.slide-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--texto-claro);
    margin-bottom: 15px;
    line-height: 1.5;
}

.slide-support {
    font-size: 0.95rem;
    color: var(--amarelo-destaque);
    font-style: italic;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BOTÕES PREMIUM --- */
.btn-cta {
    display: inline-block;
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Efeito de Luz Transcendente e Pulsar */
    box-shadow: 0 0 15px rgba(242, 169, 0, 0.6);
    animation: pulsarLuz 2s infinite alternate;
}

.btn-cta.btn-outline {
    background-color: transparent;
    color: var(--amarelo-destaque);
    border: 2px solid var(--amarelo-destaque);
    box-shadow: none;
    animation: none;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(242, 169, 0, 0.9);
    animation-play-state: paused;
}

.btn-cta.btn-outline:hover {
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    box-shadow: 0 0 15px rgba(242, 169, 0, 0.6);
}

@keyframes pulsarLuz {
    0% { box-shadow: 0 0 10px rgba(242, 169, 0, 0.5); transform: scale(1); }
    100% { box-shadow: 0 0 20px rgba(242, 169, 0, 0.8); transform: scale(1.03); }
}

/* --- INDICADORES DO CARROSSEL --- */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--amarelo-destaque);
    transform: scale(1.3);
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0; /* Esconde a barra do meio */
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- SEÇÃO SOBRE --- */
.about-section {
    padding: 100px 5%;
    background-color: var(--verde-base); /* Mantém o fundo escuro premium */
    position: relative;
    overflow: hidden;
}

/* Adicionando um brilho sutil ao fundo para separar da Hero */
.about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.05) 0%, rgba(24, 62, 44, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Visual e Imagens */
.about-visual {
    position: relative;
}

.image-mask {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 500px;
    /* Sombras para dar profundidade */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Começa maior para o efeito de zoom out do GSAP */
}

.premium-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--branco);
    color: var(--verde-base);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    /* Borda sutil amarela */
    border-left: 4px solid var(--amarelo-destaque);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.badge-text span {
    font-size: 0.9rem;
    color: #666;
}

/* Conteúdo de Texto */
.about-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.about-headline {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--branco);
}

.about-headline span {
    color: var(--amarelo-destaque);
}

.about-text {
    font-size: 1.05rem;
    color: var(--texto-claro);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--branco);
}

.about-highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--amarelo-destaque);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.about-highlight {
    color: var(--amarelo-destaque);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-mask {
        height: 400px;
    }

    .premium-badge {
        bottom: -20px;
        right: 10px; /* Evita que saia da tela no mobile */
        padding: 15px 20px;
    }
}

/* --- NOVA VARIÁVEL DE COR (Adicione no seu :root lá em cima ou deixe aqui) --- */
:root {
    --bege-claro: #f8f6f0; /* Tom off-white/areia elegante */
}

/* --- SEÇÃO ATENDIMENTO VETERINÁRIO --- */
.vet-section {
    padding: 100px 5%;
    background-color: var(--bege-claro);
    color: var(--verde-base); /* Invertemos a cor do texto para dar leitura */
    position: relative;
    overflow: hidden;
}

.vet-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Texto um pouco mais largo que a imagem */
    gap: 80px;
    align-items: center;
}

/* Textos da Seção Vet */
.vet-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.vet-headline {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--verde-base);
}

.vet-headline span {
    color: var(--amarelo-destaque);
}

.vet-text {
    font-size: 1.1rem;
    color: #333; /* Cinza escuro para leitura confortável */
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--verde-base);
    font-weight: 700;
    background-color: rgba(242, 169, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Grid de Animais (Tags Premium) */
.vet-animals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0;
}

.animal-tag {
    background-color: var(--branco);
    color: var(--verde-base);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(24, 62, 44, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animal-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(24, 62, 44, 0.15);
    border-color: var(--amarelo-destaque);
}

.animal-icon {
    font-size: 1.2rem;
}

.vet-conclusion {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--verde-base);
    border-left: 4px solid var(--amarelo-destaque);
    padding-left: 15px;
    margin-top: 30px;
}

/* Imagem e Badge do Veterinário */
.vet-visual {
    position: relative;
}

.vet-image-mask {
    border-radius: 20px 100px 20px 20px; /* Formato assimétrico moderno */
    overflow: hidden;
    height: 550px;
    box-shadow: 0 25px 50px rgba(24, 62, 44, 0.15);
}

.vet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    padding: 25px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(242, 169, 0, 0.4);
    border: 6px solid var(--bege-claro);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .vet-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vet-image-mask {
        height: 450px;
        border-radius: 20px 60px 20px 20px;
    }

    .experience-badge {
        left: 20px;
        bottom: -30px;
        width: 120px;
        height: 120px;
        border-width: 4px;
    }
    
    .exp-number { font-size: 2rem; }
}

/* --- SEÇÃO PRODUTOS VETERINÁRIOS --- */
.products-section {
    padding: 120px 5%;
    background-color: var(--verde-base);
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

/* Efeito de iluminação no fundo (Spectacular effect) */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.08) 0%, rgba(24, 62, 44, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Composição de Imagens */
.products-visual {
    position: relative;
    height: 600px;
}

.prod-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.prod-img-main img, .prod-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.4);
    border: 8px solid var(--verde-base); /* Cria uma moldura que corta a imagem principal */
    z-index: 2;
}

/* Textos e Lista */
.prod-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.prod-headline {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.prod-headline span {
    color: var(--amarelo-destaque);
}

.prod-text {
    font-size: 1.1rem;
    color: var(--texto-claro);
    margin-bottom: 30px;
}

.prod-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.prod-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.prod-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(242, 169, 0, 0.3);
}

.check-icon {
    width: 28px;
    height: 28px;
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

.prod-footer-box {
    border-left: 4px solid var(--amarelo-destaque);
    padding-left: 20px;
    font-size: 1.05rem;
    color: var(--texto-claro);
    line-height: 1.6;
}

.prod-footer-box strong {
    color: var(--branco);
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .products-visual {
        height: 450px;
        order: -1; /* Força a imagem a aparecer antes do texto no mobile */
    }

    .prod-img-main { width: 90%; }
    .prod-img-secondary { width: 60%; }
}

/* --- SEÇÃO PRODUTOS VETERINÁRIOS (QUEBRA DE COR) --- */
.rural-products-section {
    padding: 100px 5%;
    /* QUEBRA DE COR APLICADA AQUI */
    background-color: var(--bege-claro); 
    color: var(--verde-base);
    position: relative;
}

.rural-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Centralizado */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.rural-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.rural-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--verde-base);
}

.rural-headline span {
    color: var(--amarelo-destaque);
}

.rural-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

/* Grid de Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--branco);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid transparent;
    position: relative;
    top: 0;
}

.feature-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(24, 62, 44, 0.1);
    border-bottom: 4px solid var(--amarelo-destaque);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 169, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--amarelo-destaque);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--verde-base);
}

.card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Rodapé de Tags de Animais */
.animals-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(24, 62, 44, 0.1);
}

.animals-footer p {
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
}

.animals-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.a-tag {
    background-color: transparent;
    color: var(--verde-base);
    border: 2px solid var(--verde-base);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.a-tag:hover {
    background-color: var(--verde-base);
    color: var(--branco);
    transform: translateY(-3px);
}

/* --- SEÇÃO NUTRIÇÃO ANIMAL --- */
.nutrition-section {
    padding: 120px 5%;
    background-color: var(--verde-base); /* Retorno ao verde para contraste */
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.nutrition-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Imagem um pouco mais estreita que o texto */
    gap: 70px;
    align-items: center;
}

/* Visual - Organic Arch */
.nutrition-visual {
    position: relative;
}

.arch-image-mask {
    /* Formato de arco: muito arredondado em cima, pouco embaixo */
    border-radius: 300px 300px 20px 20px;
    overflow: hidden;
    height: 650px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nutri-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Prepara para o zoom out do GSAP */
}

.nutri-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(242, 169, 0, 0.3);
    z-index: 2;
}

.nutri-badge-icon svg {
    width: 20px;
    height: 20px;
}

/* Textos */
.nutri-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.nutri-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.nutri-headline span {
    color: var(--amarelo-destaque);
}

.nutri-text {
    font-size: 1.05rem;
    color: var(--texto-claro);
    line-height: 1.7;
    margin-bottom: 15px;
}

.nutri-text strong {
    color: var(--branco);
}

.nutri-list-title {
    font-size: 1.2rem;
    color: var(--branco);
    margin: 30px 0 20px 0;
    font-weight: 600;
}

/* Lista Interativa Premium */
.nutri-interactive-list {
    list-style: none;
    margin-bottom: 40px;
}

.nutri-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    position: relative;
    cursor: default;
    transition: transform 0.3s ease;
}

.nutri-item:hover {
    transform: translateX(10px);
}

.nutri-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px rgba(242, 169, 0, 0.5));
}

.nutri-item-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--texto-claro);
    transition: color 0.3s ease;
}

.nutri-item:hover .nutri-item-text {
    color: var(--amarelo-destaque);
}

/* Linha separadora animada */
.nutri-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.nutri-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--amarelo-destaque);
    transition: width 0.4s ease;
}

.nutri-item:hover .nutri-line::after {
    width: 100%;
}

/* Caixa de Conclusão */
.nutri-conclusion-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--amarelo-destaque);
    padding: 25px;
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(5px);
}

.nutri-conclusion-box p {
    color: var(--texto-claro);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.nutri-highlight-text {
    font-size: 1.15rem !important;
    font-weight: 700;
    color: var(--amarelo-destaque) !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .nutrition-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nutrition-visual {
        order: -1;
    }

    .arch-image-mask {
        height: 450px;
        border-radius: 200px 200px 15px 15px;
    }

    .nutri-badge {
        right: 10px;
        top: 20px;
    }
}

/* --- SEÇÃO EQUIPAMENTOS E UTILIDADES --- */
.equip-section {
    padding: 120px 5%;
    /* QUEBRA DE COR */
    background-color: var(--bege-claro);
    color: var(--verde-base);
    position: relative;
    overflow: hidden;
}

.equip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Textos */
.equip-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.equip-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--verde-base);
}

.equip-headline span {
    color: var(--amarelo-destaque);
}

.equip-text {
    font-size: 1.1rem;
    color: #444; /* Cinza escuro para melhor leitura no fundo claro */
    line-height: 1.7;
    margin-bottom: 25px;
}

.equip-text strong {
    color: var(--verde-base);
    font-weight: 700;
}

.equip-list-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--verde-base);
}

/* Blocos de Lista Premium (Soft UI) */
.equip-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colunas para os blocos */
    gap: 20px;
    margin-bottom: 40px;
}

.equip-block {
    background-color: var(--branco);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(24, 62, 44, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.equip-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(24, 62, 44, 0.1);
    border-color: var(--amarelo-destaque);
}

.equip-check {
    width: 32px;
    height: 32px;
    background-color: rgba(242, 169, 0, 0.15);
    color: var(--amarelo-destaque);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.equip-block:hover .equip-check {
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
}

.equip-check svg {
    width: 18px;
    height: 18px;
}

.equip-block-text {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--verde-base);
}

/* Conclusão */
.equip-conclusion {
    border-left: 4px solid var(--amarelo-destaque);
    padding-left: 20px;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: #555;
}

/* Visual - Imagens Sobrepostas */
.equip-visual {
    position: relative;
    height: 600px;
}

.equip-img-bg {
    position: absolute;
    top: 5%;
    right: 0;
    width: 70%;
    height: 90%;
    background-color: rgba(24, 62, 44, 0.05);
    border-radius: 20px;
    transform: rotate(5deg);
    z-index: 0;
}

.equip-img-main {
    position: absolute;
    top: 0;
    right: 5%;
    width: 75%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(24, 62, 44, 0.15);
    z-index: 1;
}

.equip-img-float {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -10px 20px 40px rgba(24, 62, 44, 0.2);
    border: 8px solid var(--bege-claro); /* Moldura para separar da imagem de trás */
    z-index: 2;
}

.equip-img-main img, .equip-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equip-visual:hover .equip-img-main img { transform: scale(1.05); }
.equip-visual:hover .equip-img-float img { transform: scale(1.05); }

/* Responsividade */
@media screen and (max-width: 960px) {
    .equip-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .equip-grid-list {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
    }

    .equip-visual {
        height: 500px;
        order: -1;
    }

    .equip-img-main { width: 85%; right: 0; }
    .equip-img-float { width: 65%; bottom: 0; }
}

/* --- SEÇÃO ENERGIA SOLAR --- */
.solar-section {
    padding: 120px 5%;
    background-color: var(--verde-base); /* Fundo escuro premium */
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.solar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Textos */
.solar-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.solar-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.solar-headline span {
    color: var(--amarelo-destaque);
}

.solar-text {
    font-size: 1.1rem;
    color: var(--texto-claro);
    line-height: 1.7;
    margin-bottom: 25px;
}

.solar-list-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--branco);
}

/* Lista de Benefícios */
.solar-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.solar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(242, 169, 0, 0.1);
    transition: all 0.3s ease;
}

.solar-item:hover {
    background: rgba(242, 169, 0, 0.05);
    border-color: rgba(242, 169, 0, 0.5);
    transform: translateX(10px);
}

.sun-icon {
    color: var(--amarelo-destaque);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Efeito de brilho no ícone */
    filter: drop-shadow(0 0 8px rgba(242, 169, 0, 0.6));
}

.sun-icon svg {
    width: 24px;
    height: 24px;
}

.solar-conclusion {
    font-style: italic;
    color: var(--amarelo-destaque);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.solar-cta-wrapper {
    margin-top: 20px;
}

/* Visual - Aura Solar */
.solar-visual {
    position: relative;
    height: 550px;
}

.solar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.2) 0%, rgba(24, 62, 44, 0) 60%);
    z-index: 0;
    pointer-events: none;
    animation: pulsarAura 4s infinite alternate; /* Animação suave de pulso */
}

@keyframes pulsarAura {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.solar-image-mask {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(242, 169, 0, 0.3);
}

.solar-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solar-visual:hover .solar-image-mask img {
    transform: scale(1.05);
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .solar-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .solar-visual {
        height: 400px;
    }
}

/* --- SEÇÃO CRÉDITO RURAL (QUEBRA DE COR) --- */
.credit-section {
    padding: 120px 5%;
    background-color: var(--bege-claro); /* Retorno ao Bege Premium */
    color: var(--verde-base);
    position: relative;
    overflow: hidden;
}

.credit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual e Imagem */
.credit-visual {
    position: relative;
}

.credit-image-mask {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 25px 50px rgba(24, 62, 44, 0.15);
    position: relative;
}

.credit-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge Flutuante de Crescimento */
.growth-badge {
    position: absolute;
    bottom: 50px;
    right: -40px;
    background-color: var(--branco);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--amarelo-destaque);
    z-index: 2;
}

.growth-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(24, 62, 44, 0.05);
    color: var(--verde-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-icon svg { width: 24px; height: 24px; }

.growth-text {
    display: flex;
    flex-direction: column;
}

.growth-text strong {
    font-size: 1.1rem;
    color: var(--verde-base);
    line-height: 1.2;
}

.growth-text span {
    font-size: 0.9rem;
    color: #666;
}

/* Textos e Cartões */
.credit-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.credit-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--verde-base);
}

.credit-headline span { color: var(--amarelo-destaque); }

.credit-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Cartões de Investimento */
.credit-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 35px 0;
}

.investment-card {
    background-color: var(--branco);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(24, 62, 44, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.investment-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(24, 62, 44, 0.08);
    border-color: var(--amarelo-destaque);
}

.inv-icon {
    color: var(--amarelo-destaque);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(242, 169, 0, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.inv-icon svg { width: 24px; height: 24px; }

.inv-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--verde-base);
}

/* Conclusão */
.credit-conclusion {
    background-color: rgba(242, 169, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--amarelo-destaque);
}

.credit-conclusion p {
    font-weight: 600;
    color: var(--verde-base);
    font-style: italic;
    margin: 0;
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .credit-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .credit-visual { order: -1; }
    
    .credit-image-mask { height: 450px; }
    
    .growth-badge {
        right: 20px;
        bottom: -20px;
        padding: 15px 20px;
    }
}

/* =========================================
   SEÇÃO 9: DIFERENCIAIS (VERDE ESCURO)
========================================= */
.diff-section {
    padding: 120px 5%;
    background-color: var(--verde-base);
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.diff-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.05) 0%, rgba(24, 62, 44, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.diff-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.diff-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.diff-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.diff-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.diff-headline span { color: var(--amarelo-destaque); }

.diff-subtitle {
    font-size: 1.15rem;
    color: var(--texto-claro);
    line-height: 1.6;
}

/* Grid de Diferenciais */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--amarelo-destaque);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(242, 169, 0, 0.3);
}

.diff-card:hover::before { transform: scaleY(1); }

.diff-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.4s ease;
}

.diff-card:hover .diff-number { color: rgba(242, 169, 0, 0.15); }

.diff-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--branco);
    line-height: 1.5;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.diff-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: var(--texto-claro);
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-conclusion strong { color: var(--amarelo-destaque); }


/* =========================================
   SEÇÃO 10: LOCALIZAÇÃO (BEGE CLARO)
========================================= */
.location-section {
    padding: 120px 5%;
    background-color: var(--bege-claro);
    color: var(--verde-base);
    position: relative;
    overflow: hidden;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-eyebrow {
    color: var(--amarelo-destaque);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.location-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.location-headline span { color: var(--amarelo-destaque); }

.location-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}

.location-pin-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--branco);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--verde-base);
    margin-bottom: 40px;
}

.pin-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(24, 62, 44, 0.1);
    color: var(--verde-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pin-icon svg { width: 24px; height: 24px; }

.pin-text strong {
    display: block;
    font-size: 1.3rem;
    color: var(--verde-base);
    margin-bottom: 5px;
}

.pin-text span {
    font-size: 1rem;
    color: #666;
}

.btn-route {
    background-color: var(--verde-base);
    color: var(--branco);
    box-shadow: 0 10px 20px rgba(24, 62, 44, 0.2);
}

.btn-route:hover {
    background-color: #112d20;
    box-shadow: 0 15px 30px rgba(24, 62, 44, 0.4);
}

/* Visual Localização */
.location-visual { position: relative; }

.location-image-mask {
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 25px 50px rgba(24, 62, 44, 0.15);
}

.location-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--branco);
    color: var(--verde-base);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(24, 62, 44, 0.05);
    z-index: 2;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #10b981; /* Verde de "Aberto/Online" */
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Responsividade */
@media screen and (max-width: 960px) {
    .location-container { grid-template-columns: 1fr; gap: 50px; }
    .location-image-mask { height: 400px; }
    .status-badge { left: 20px; bottom: 20px; }
}

/* =========================================
   SEÇÃO FINAL CTA (VERDE ESCURO)
========================================= */
.final-cta-section {
    padding: 120px 5%;
    background-color: var(--verde-base);
    color: var(--branco);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.08) 0%, rgba(24, 62, 44, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.final-headline span {
    color: var(--amarelo-destaque);
}

.final-subtitle {
    font-size: 1.2rem;
    color: var(--texto-claro);
    line-height: 1.6;
    margin-bottom: 40px;
}

.final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    vertical-align: middle;
}

.btn-icon svg { width: 20px; height: 20px; }

.final-btn-loc { background-color: transparent; }
.final-btn-loc:hover { background-color: rgba(255, 255, 255, 0.1); color: var(--branco); border-color: var(--branco); }

/* =========================================
   RODAPÉ (FOOTER)
========================================= */
.site-footer {
    background-color: #0d261a; /* Um tom ainda mais escuro para o rodapé */
    padding: 60px 5% 30px 5%;
    color: var(--texto-claro);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    margin-bottom: 40px;
    max-width: 500px;
}

.footer-logo {
    display: inline-block;
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-copyright {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888;
}

.developer-credit {
    font-style: italic;
}

/* =========================================
   BOTÕES FLUTUANTES (WPP & TOPO)
========================================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--branco);
}

.float-btn svg { width: 28px; height: 28px; }

/* Botão WhatsApp */
.btn-wpp-float {
    background-color: #25D366; /* Verde Oficial do WhatsApp */
    text-decoration: none;
    animation: pulseWpp 2s infinite;
}

.btn-wpp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    animation-play-state: paused;
}

@keyframes pulseWpp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Botão Voltar ao Topo */
.btn-top {
    background-color: var(--amarelo-destaque);
    color: var(--verde-base);
    opacity: 0; /* Inicia invisível */
    visibility: hidden;
    transform: translateY(20px);
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-top:hover {
    background-color: #d19200;
    transform: translateY(-5px);
}

/* Responsividade Final */
@media screen and (max-width: 768px) {
    .footer-copyright { flex-direction: column; gap: 10px; text-align: center; }
    .floating-actions { bottom: 20px; right: 20px; }
    .float-btn { width: 50px; height: 50px; }
    .float-btn svg { width: 24px; height: 24px; }
    .final-actions { flex-direction: column; }
    .final-actions .btn-cta { width: 100%; text-align: center; }
}