/* Paleta de Cores Inspirada em Lavpop */

:root {
    --azul-principal: #04437d;
    /* Azul forte para títulos e detalhes */
    --azul-claro: #79a1d1;
    /* Azul mais suave para ícones ou fundos */
    --verde-principal: #8bc34a;
    /* Verde para botões e destaques */
    --verde-escuro: #5c9c2e;
    /* Verde para hover de botões */
    --branco: #ffffff;
    /* --cinza-fundo: #f8f9fa; */
    /* REMOVIDO USO DIRETO */
    --cinza-texto: #555555;
    /* Cinza para texto principal */
    --cinza-escuro: #333333;
    /* Cinza mais escuro para títulos secundários ou texto forte */
    --sombra-padrao: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Sombra suave */
}


/* Reset Básico e Configurações Globais */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--branco);
    color: var(--cinza-texto);
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.4rem;
    color: var(--azul-principal);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--verde-principal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--verde-escuro);
}

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


/* Container Principal */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ------------------------- */


/* HEADER E NAVEGAÇÃO        */


/* ------------------------- */

.header {
    background-color: var(--branco);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    min-height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
}

.logo-container {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-25%);
    z-index: 1001;
    padding: 11px 28px;
    display: block;
    line-height: 0;
    text-decoration: none;
    overflow: hidden;
    background: var(--azul-principal);
    border-radius: 77% 19% 38% 21% / 103% 52% 48% 64%;
}

.logo-icon {
    height: 120px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu a.nav-link {
    margin: 0 1rem;
    color: var(--azul-principal);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a.nav-link:hover,
.nav-menu a.nav-link.active {
    color: var(--verde-principal);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--azul-principal);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    z-index: 1003;
}


/* ------------------------- */


/* SEÇÃO HERO                */


/* ------------------------- */

.hero {
    position: relative;
    height: 85vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    background-image: url('/imagens/banner-lavpop.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(1, 59, 173, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: var(--branco);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ------------------------- */


/* BOTÕES                    */


/* ------------------------- */

.btn {
    display: inline-block;
    background-color: var(--verde-principal);
    color: var(--branco);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--verde-principal);
    border: 2px solid var(--verde-principal);
}

.btn-secondary:hover {
    background-color: var(--verde-principal);
    color: var(--branco);
    border-color: var(--verde-principal);
}


/* ------------------------- */


/* SEÇÕES GERAIS             */


/* ------------------------- */

.section {
    padding: 5rem 0;
}

.section-white {
    background-color: var(--branco);
}

.section-blue {
    background-color: var(--azul-principal);
    color: #f0f0f0;
}

.section-blue h2,
.section-blue h3,
.section-blue h4,
.section-blue h5,
.section-blue h6 {
    color: var(--branco);
}

.section-blue p {
    color: #f0f0f0;
}

.section-blue a:not(.btn) {
    color: var(--branco);
    text-decoration: underline;
    font-weight: 500;
}

.section-blue a:not(.btn):hover {
    color: var(--verde-principal);
    text-decoration: none;
}

.section-blue .card .icon-feature,
.section-blue .icon-feature:not(.icon-green) {
    color: var(--verde-principal)
}

.section-blue .card {
    background-color: var(--branco);
    color: var(--cinza-texto);
}

.section-blue .card h3 {
    color: var(--azul-principal);
}

.section-blue .card p {
    color: var(--cinza-texto);
}

.section-blue .btn-secondary {
    color: var(--branco);
    border-color: var(--branco);
}

.section-blue .btn-secondary:hover {
    background-color: var(--branco);
    color: var(--azul-principal);
    border-color: var(--branco);
}


/* ------------------------- */


/* CARDS                     */


/* ------------------------- */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.card {
    background: var(--branco);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--sombra-padrao);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card .icon-feature {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--verde-principal);
    /* Transição p/ hover */
}


/* .card h3 { } */


/* Cor definida pela seção pai */


/* .card p { } */


/* Cor definida pela seção pai */

.card:hover .icon-feature {
    transform: scale(1.1);
}


/* Efeito hover ícone */


/* ------------------------- */


/* SEÇÃO ECO-FRIENDLY        */


/* ------------------------- */

.eco-split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.eco-split-image {
    flex: 1 1 40%;
    min-width: 280px;
}

.eco-split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: var(--sombra-padrao);
}

.eco-split-content {
    flex: 1 1 55%;
}

.eco-split-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.eco-split-content .eco-intro-text {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--cinza-texto);
}

.eco-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.eco-feature-item:last-child {
    margin-bottom: 0;
}

.eco-feature-item i {
    font-size: 1.6rem;
    margin-right: 1rem;
    margin-top: 2px;
    width: 25px;
    transition: transform 0.3s ease;
    /* Transição p/ hover */
}

.eco-feature-item h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.15rem;
    color: var(--azul-principal);
    font-weight: 700;
}

.eco-feature-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-green {
    color: var(--verde-principal);
}

.eco-feature-item:hover i {
    transform: scale(1.15);
}


/* Efeito hover ícone eco */


/* ------------------------- */


/* SEÇÃO MAPA                */


/* ------------------------- */

.map-section .map-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sombra-padrao);
}


/* ------------------------- */


/* FOOTER                    */

.footer {
    background-color: var(--azul-principal);
    /* Cor de fundo exemplo */
    color: #ecf0f1;
    /* Cor do texto exemplo */
    padding: 40px 0 20px 0;
    font-size: 0.9em;
}

.footer .container {
    max-width: 1140px;
    /* Ajuste conforme seu container principal */
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    /* Espaço entre as colunas */
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    /* Largura mínima antes de quebrar */
}

.footer-heading {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ffffff;
    /* Cor do título exemplo */
    border-bottom: 1px solid #4e6072;
    /* Linha sutil abaixo do título */
    padding-bottom: 8px;
    display: inline-block;
}

.footer-about p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-about a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-about a:hover {
    color: #3498db;
    /* Cor de hover exemplo */
}

.footer-about .fas {
    /* Ícone de envelope/telefone */
    margin-right: 8px;
    color: #3498db;
    /* Cor do ícone exemplo */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    /* Cor de hover exemplo */
    padding-left: 5px;
    /* Efeito sutil no hover */
}

.footer-social .social-icons a {
    color: #ecf0f1;
    margin-right: 15px;
    font-size: 1.2em;
    /* Ajusta o tamanho base do ícone se necessário (fa-2x já aumenta) */
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #3498db;
    /* Cor de hover exemplo */
}

.footer-social .social-icons a:last-child {
    margin-right: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4e6072;
    /* Linha separadora */
    padding-top: 20px;
    margin-top: 20px;
    /* Garante espaço acima da linha */
    font-size: 0.85em;
    color: #bdc3c7;
    /* Cor mais suave para o copyright */
}


/* Responsividade básica */

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        /* Ou flex-start se preferir alinhado à esquerda */
        text-align: center;
        /* Centraliza texto nas colunas empilhadas */
    }
    .footer-section {
        min-width: 100%;
        margin-bottom: 20px;
    }
    .footer-heading {
        display: block;
        /* Garante que a borda ocupe a largura no modo coluna */
        border-bottom: none;
        /* Remove a borda no mobile se preferir */
    }
    .footer-social .social-icons {
        text-align: center;
        /* Garante que os ícones fiquem centrados */
    }
}


/* ------------------------- */


/* BOTÃO WHATSAPP            */


/* ------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ------------------------- */


/* ANIMAÇÕES ON SCROLL       */


/* ------------------------- */

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    transform: translate(0, 0);
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ------------------------- */


/* MEDIA QUERIES RESPONSIVAS */


/* ------------------------- */


/* --- TABLETS E MENORES (<= 992px) --- */

@media (max-width: 992px) {
    /* --- Header/Menu Responsivo --- */
    .header-container {
        position: relative;
        padding-left: 0;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--branco);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-top: 1px solid var(--cinza-fundo);
        z-index: 1002;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        margin-left: 0;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a.nav-link {
        margin: 0;
        padding: 1rem 1.5rem;
        text-align: left;
        border-bottom: 1px solid var(--cinza-fundo);
        width: 100%;
        text-transform: none;
        font-size: 1rem;
        font-weight: 500;
    }
    .nav-menu a.nav-link:last-child {
        border-bottom: none;
    }
    .nav-menu a.nav-link:hover {
        background-color: var(--cinza-fundo);
        color: var(--verde-escuro);
    }
    .logo-container {
        left: 1rem;
    }
    .logo-icon {
        height: 50px;
    }
    /* --- Outros Ajustes 992px --- */
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    h2 {
        font-size: 2rem;
    }
}


/* --- TABLETS MENORES E CELULARES GRANDES (<= 768px) --- */

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .section {
        padding: 4rem 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .eco-split-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .eco-split-image,
    .eco-split-content {
        flex-basis: 100%;
    }
    .eco-split-content h2 {
        text-align: center;
    }
    .eco-split-content .eco-intro-text {
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-social {
        margin-top: 1rem;
    }
}


/* --- CELULARES (<= 576px) --- */

@media (max-width: 576px) {
    h2 {
        font-size: 1.6rem;
    }
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .logo-icon {
        height: 45px;
    }
    .header {
        min-height: 60px;
    }
    .header-container {
        height: 50px;
    }
    .nav-menu a.nav-link {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    .menu-toggle {
        font-size: 1.6rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
}