/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* cor */
:root {
    --azul-marinho: #112E5A;
    --verde-escuro: #2C7878;
    --fundo-cinza: #ECECEC;
    --azul-escuro: #072136;

    --verde-petroleo: #1a595e;
    --verde-petroleo-escuro: #0f3739;
}

/* Configuração Global de Fontes */
@font-face {
    font-family: 'Betterlett';
    src: url('font/Betterlett.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    line-height: 1.6;
    color: #333;
    padding-top: 120px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 160px;
}

h2 {
    font-size: 2.5rem;
    color: var(--azul-escuro);
    font-weight: 500;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.85rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* FIM RESET */


/* MENU RESPONSIVO */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
}

.mobile-menu-icon div {
    width: 32px;
    height: 2px;
    background: #0b2a45;
    margin: 8px;
    transition: 0.3s;
}

/* Animação de entrada dos itens do menu */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-mobile-header {
    display: none;
}

#overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Escondido por padrão */
    z-index: 9998; /* Fica atrás do menu, mas acima do conteúdo */
}

#overlay-menu.active {
    display: block;
}
/* FIM MENU RESPONSIVO */

/* CABEÇALHO E RODAPE */
.topo {
    background-color: var(--azul-escuro);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 1000;

    /* diminuir */
    transition: all 0.4s ease-in-out;
}

header {
    background: #fff;
    height: 80px;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Fixa o topo e adiciona a suavidade */
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.rodape-header {
    background-color: var(--azul-escuro);
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    display: flex;
    justify-content: center; 
    align-items: flex-end; /* Alinha ao fundo da barra */
}

.rodape-reader-box {
    width: 100%;
    max-width: 1350px; 
    display: flex;
}

.rodape-header p {
    color: white;
    font-size: 1.3rem;
    font-weight: 100;
    font-family: 'Betterlett';
    margin-left: 3.21000rem; 
    margin-bottom: 10px; 
}

/* Garante que o nav ocupe a altura do pai */
header nav {
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    top: 18px;
    z-index: 10000;
    margin-left: 40px;
}

/* Estado inicial da Logo */
.logo img {
    top: 32px;
    height: 100px;
    width: auto;
    display: block;
}

.logo {
    font-weight: bold;
    color: #0b2a45;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #0b2a45;
    margin-left: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2a7a5f;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--verde-escuro);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* botão do header */
.btn {
    background-color: var(--azul-marinho);
    /* Verde da marca */
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    /* Estilo arredondado profissional */
    font-size: 0.60rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--azul-marinho);
    margin-left: 20px;
}

.btn:hover {
    background-color: transparent;
    color: #2a7a5f;
    transform: translateY(-2px);
    /* Pequeno pulo para cima */
    box-shadow: 0 4px 15px rgba(42, 122, 95, 0.2);
}

/* Ajuste para quando o header encolher (opcional) */
header.shrink .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
}
/* FIMCABEÇALHO E RODAPE */

/* HERO PRINCIPAL */
.hero {
    position: relative;
    width: 100%;
    padding: 50px 0 65px 0;
    display: block;
    overflow: hidden;
    height: auto;
}


.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-img {
    flex: 1 1 10px;
}

.hero-text h1 {
    font-size: 1.9rem;
    text-align: justify;
    text-justify: inter-word; 
    letter-spacing: -0.5px; 
    color: var(--verde-escuro);
    hyphens: none;
    -webkit-hyphens: none;
}


.risco-duplo {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--azul-escuro);
}

/* Animação para riscar da esquerda para a direita */
@keyframes desenharRisco {
    from {
        width: 0;
    }

    to {
        width: 110%;
    }
}

.risco-duplo::before {
    content: "";
    position: absolute;
    left: -5%;
    bottom: -6px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5 Q 20 2, 50 5 T 98 6' stroke='%23d1d1d1' stroke-width='6' fill='transparent' stroke-linecap='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    overflow: hidden;
    animation: desenharRisco 1s ease-out forwards;
}


.risco-duplo::after {
    content: "";
    position: absolute;
    left: 15%;
    bottom: -14px;
    height: 10px;
    /* Também com stroke-width 6 */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5 Q 20 2, 50 5 T 98 6' stroke='%23d1d1d1' stroke-width='6' fill='transparent' stroke-linecap='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    overflow: hidden;
    width: 0;
    animation: desenharRisco 0.8s ease-out forwards;
    animation-delay: 0.3s;
}


.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    margin-top: 15px;
}

.hero-text p span {
    font-weight: 600;
    color: var(--azul-marinho);
}

.btn-cta {
    background: var(--verde-escuro);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid var(--azul-marinho);
}

.btn-cta:hover {
    background-color: transparent;
    color: #2a7a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 122, 95, 0.2);
}


.hero-img img {
    position: relative;
    top: 20px;
    max-width: 350px;
    border-radius: 8px;
}
/* FIM HERO PRINCIPAL */

/* POR CONTAR FÁCIL CONTÁBIL */
.pq-contar-container {
    background: var(--fundo-cinza);
}

.pq-contar {
    text-align: center;
    padding: 60px 20px;
}

.pq-contar .btn-cta {
    background-color: #128c54;
}

.pq-contar .btn-cta:hover {
    background-color: var(--azul-escuro);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(18, 140, 84, 0.2);
}

.pq-contar p.subtitle {
    color: var(--azul-marinho);
    font-size: 1.6rem;
    font-weight: 500;
}

.pq-contar p.subtitle span {
    color: var(--verde-escuro);
    font-weight: 500;
}

.subtitle {
    font-weight: bold;
    margin: 10px 0 30px;
}

.btn-wpp {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 50px;
}

.features-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.f-item {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.f-item img {
    width: 100%;
    margin-bottom: 15px;
    padding: 2px;
    border-radius: 10%;
    transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    filter: brightness(100%);
}

.f-item:hover img {
    filter: brightness(70%);
    border-color: #2c7878;
}

.f-item h3 {
    color: var(--azul-marinho);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 500;
}

.f-item p {
    color: #000;
    font-size: 0.95rem;
    line-height: 25.6px;
    font-weight: 400;
    letter-spacing: normal;
}
/* FIM POR CONTAR FÁCIL CONTÁBIL */

/* FAIXA DESTAQUE */
.faixa-destaque {
    background-color: var(--azul-escuro);
    /* color: #ffffff; */
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.marquee-content {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll-infinite 30s linear infinite;
}

.marquee-content img {
    position: relative;
    top: 2px;
}

.marquee-content a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* A Mágica do Movimento */
@keyframes scroll-infinite {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.faixa-destaque:hover .marquee-content {
    animation-play-state: paused;
}
/* FIM FAIXA DESTAQUE */

/* PLANOS E PREÇOS */
#planos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plans-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.badge {
    display: block;
    background: var(--verde-escuro);
    color: white;
    padding: 12px 25px;
    font-weight: 500;
    letter-spacing: 2px;
    width: 100%;
    font-size: 2.5rem;
}

/* --- GRID --- */
.plans-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: stretch; 
}

/* --- CARD BASE --- */
.plan-card {
    border: 3px solid #000000;
    width: 360px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 1px 0px #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; 
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 8px 15px rgba(0, 0, 0, 0.1);
}

/* 1. Profissional */
.profissional { 
    background-color: #0F2E54; 
    color: var(--azul-escuro); 
}

/* 2. Avançado (Texto Escuro para contraste no Azul) */
.avancado { 
    background-color: #0F2E54; 
}
.avancado,
.avancado,
.avancado,
.avancado,
.avancado { 
    color: #0F2E54 !important; 
}

/* 3. Estratégico (Texto Branco para contraste no Azul Escuro) */
.estrategico { 
    background-color: #0F2E54; 
    color: white; 
}
.estrategico .plan-card-h2 h2,
.estrategico,
.estrategico { 
    color: white !important; 
}

.estrategico p, .estrategico li {
    color: #ffffff;
}

/* --- CABEÇALHO DO CARD --- */
.plan-card-h2 {
    border-bottom: 3px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    background: rgba(0,0,0,0.03); 
}

.plan-card-h2-estrategico {
    border-bottom: 3px solid #ffffff;
}

.plan-card-h2-profissional {
     border-bottom: 3px solid #ffffff;
}

.plan-card-h2 h2 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Calibri', 'Trebuchet MS', sans-serif;
    font-style: italic;
    margin: 0;
    color: #ffffff;
}

/* --- CONTEÚDO --- */
.plan-card-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 25px;
}

.bonus {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.plan-card-1 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.price {
    font-size: 2.2rem;
    margin: 15px 0;
    color: #16A34A;
    font-weight: 800;
}

/* Seção "+ TODOS OS ITENS" */
.plan-card-h4 {
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);

}

.plan-card-h4 h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #16A34A;
}

.plan-card-h4 span {
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    color: #16A34A;
}

/* Listas */
.plan-card ul {
    list-style: none;
    margin: 15px 0 30px 0;
    padding: 0;
}

.plan-card li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
    text-align: start;
    color: #ffffff;
}

/* --- BOTÕES --- */
.btn-plan {
    background-color: #16A34A;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000; 
    margin-top: auto; 
}

.btn-plan:hover {
    background-color: #113254;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.plan-card-1 .btn-plan2 {
    background-color: #128c54 !important;
}
/* FIM PLANOS E PREÇOS */

/* SERVIÇOS */
.servicos-detalhe {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.servicos-header {
    margin-bottom: 50px;
}

.badge-blue img {
    max-width: 120px;
    height: auto;
}

.badge-blue {
    background-color: var(--verde-escuro);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: white;
    padding: 12px 25px;
    font-weight: 500;
    letter-spacing: 2px;
    width: 100%;
    font-size: 2.8rem;
}

.servicos-header-h2 {
    padding: 30px 0;
}

.servicos-header-h2 h2 {
    font-size: 1.6rem;
    color: var(--azul-escuro);
    font-weight: 500;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
        text-align: justify;
        text-justify: inter-character;
        word-spacing: -0.02em;
        hyphens: auto;
}

.servicos-header-h2 img {
    width: 40px;
    height: auto;
}

.seta-para-baixo {
    display: none;
}

.servicos-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-top: 15px;
    width: 90%;
    margin: 0 auto;
    margin: 15px 0;

    text-align: justify;
    text-justify: inter-character;
    word-spacing: -1px; 
}

.servicos-header p span {
    font-weight: 600;
    color: var(--azul-escuro);
}

.servicos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.servicos-grid>div {
    flex: 1 1 330px;
}

.s-col.s-col-1 {
    background: #D8E8F2;
}


/* 1. Transformamos o card em um container Flexbox */
.s-col {
    background: #F7F7F7;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.s-col .btn-plan {
    text-align: center;
    background-color: #128c54 !important;
}

.s-col .btn-plan2 {
    background-color: #128c54 !important;
}

.s-col .btn-plan:hover {
    background-color: var(--azul-escuro) !important;
    color: #ffffff !important;
}

.s-col .btn-plan2:hover {
    background-color: var(--azul-escuro) !important;
    color: #ffffff !important;
}

.s-col img {
    width: 100%;
    margin-bottom: 20px;
    transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    filter: brightness(100%);
}

.s-col img:hover {
    filter: brightness(70%);
    border-color: #2c7878;
}

.s-col h3 {
    color: var(--verde-escuro);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 0;
}

.s-col ul {
    padding: 5px 0;
    font-size: 0.85rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 20px;
    margin-left: 50px;

    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.s-col ul li::before {
    content: "";
    color: #2a7a5f;
    font-weight: bold;
    margin-right: 8px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.s-col h4 {
    font-weight: 500;
    color: var(--azul-escuro);
    padding-bottom: 20px;
}

.s-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 10px;
    text-align: justify;
    text-justify: inter-character; 
    word-spacing: -1px; 
}

.highlight-col span {
    color: #ffffff;
    font-weight: 800;
}

.highlight-col p {
    margin-top: 10px;
    font-size: 0.8rem;
}

.reforma-txt {
    letter-spacing: -0.5px;
}

.reforma-txt span {
    font-weight: 600;
    color: var(--azul-escuro);
}

.highlight-col {
    background: #2A7477;
    color: white;
}

.highlight-col h3 {
    color: white;
    border-bottom-color: #fff;
}

.highlight-col ul li {
    color: #ffffff;
}
/* FIM SERVIÇOS */

/* FÁCIL CONTÁBIL */
.quem-somos-section {
    margin: 80px 0;
    padding: 80px 0;
    background-color: #F7F7F7;
}

.sobre-container,
.diferencial-flex {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.sobre-img-texto {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: var(--verde-escuro);
    padding: 12px 25px;
    font-weight: 500;
    letter-spacing: 2px;
    width: 100%;
    font-size: 2.8rem;
}

.about-header-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}


.about-img-h2,
.diferencial-title {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.about-img-h2-mobile {
    display: none;
}

.diferencial-title-mobile {
    display: none;
}

.about-img-h2 h2, .about-img-h2-mobile h2 {
    font-size: 1.8rem;
    color: var(--azul-marinho);
}
.diferencial-text h2 {
    font-size: 2rem;
    color: var(--verde-escuro);
}

.about-text img,
.diferencial-title img {
    width: 40px;
    height: auto;
}

.about-p p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    letter-spacing: normal;
    margin-top: 15px;
    width: 90%;
    margin: 0 auto;

    text-align: justify;
    text-justify: inter-character; 
    word-spacing: -1px; 
}


.about-image {
    transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    filter: brightness(100%);
}

.about-image img, .about-image-mobile img {
    max-width: 330px;
    border-radius: 8px;
}

.about-image:hover, .about-image-mobile:hover {
    filter: brightness(70%);
    border-color: #2c7878;
}


.about-image-mobile {
    display: none;
    transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    filter: brightness(100%);
}



.about-text p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    margin: 30px 0;
    text-align: justify;
}

.about-text p:nth-child(3),
.about-text p:nth-child(4),
.about-text p:nth-child(5) {
    font-weight: 400;
}
/* FIM FÁCIL CONTÁBIL */

/* NOSSO DIFERENCIAL */
.nosso-diferencial {
    background: #ffffff;
}

.diferencial-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.diferencial-image,
.diferencial-text {
    flex: 1;
}

.diferencial-image {
    transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    filter: brightness(100%);
}

.diferencial-image img {
    max-width: 320px;
}

.diferencial-image img:hover {
    filter: brightness(70%);
    border-color: #2c7878;
}

.diferencial-flex p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 400;
    margin: 30px 0;

}
/* FIM NOSSO DIFERENCIAL */

/* DÚVIDAS FREQUENTEL */
.duvidas-frequentes {
    background-color: #cccc;
    padding: 80px 0;
}

.contaner-geral-duv-frequ {
    border-radius: 14px;
    padding: 20px;

    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
}

.container-duvidas-frequentes {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    /* background-color: red; */
}

.duvidas-frequentes-esquerdo {
    flex: 1 1 300px;
    padding: 40px;
    border-radius: 15px;
    background: #ffffff;
}

.duvidas-frequentes-direita {
    /* flex: 1 1 100px; */
    flex-direction: column;
    display: flex;
    align-items: center;
    align-self: flex-start; 
    /* position: sticky; */
}


/* Ajuste na imagem para ela não distorcer */
.duvidas-frequentes-direita img {
    width: 100%;      
    max-width: 400px;  
    height: auto;      
    border-radius: 10px;
}

.faq-h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.faq-h2 h2 {
    font-size: 1.7rem;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: none;
}

.faq-question span {
    font-size: 0.9rem;
}

.faq-question .icon {
    font-size: 22px;
    font-weight: bold;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 40px;
  transition:max-height 0.4s ease, padding 0.4s ease;
  border: 1px solid var(--verde-escuro);
}

.faq-answer p {
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    padding: 0px 20px;
}

/* ÍMPARES */
.faq-item:nth-child(odd) .faq-question {
    background: var(--verde-petroleo-escuro);
    color: #ffffff;
}

.faq-item:nth-child(odd) .faq-answer {
    background: #ffffff;
    color: #333333;
}

/* PARES */
.faq-item:nth-child(even) .faq-question {
    background: #ffffff;
    color: var(--verde-petroleo-escuro);
    border: 1px solid var(--verde-petroleo-escuro);
}

.faq-item:nth-child(even) .faq-answer {
    background: var(--verde-petroleo-escuro);
    color: #ffffff;
}

.duvidas-frequentes-direita h3 {
    padding: 20px;
}

.duvidas-frequentes-direita p {
    font-size: 1rem;
    font-weight: 600;
}

.infor-frequ {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: stretch;     /* Faz todos terem a mesma altura */
    gap: 20px;                /* Espaço entre os cards */
    flex-wrap: wrap;          /* Quebra linha em telas menores (celular) */
    padding: 20px;
}

.infor-frequ a {
    text-decoration: none;
    color: var(--verde-petroleo-escuro);
    width: 120px;
    /* height: 100px; */
}

.infor-frequ .telefone,
.infor-frequ .whatsapp-duvi,
.infor-frequ .email-duv {
    background-color: white;
    box-shadow: 5px 5px 5px 1px #a37777;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    gap: 3px;
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */

}

.infor-frequ .telefone,
.infor-frequ .whatsapp-duvi,
.infor-frequ .email-duv {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.infor-frequ .telefone:hover,
.infor-frequ .whatsapp-duvi:hover,
.infor-frequ .email-duv:hover {
    transform: translateY(-6px);
    box-shadow: 8px 12px 20px rgba(0,0,0,0.15);
}

.link-telefone {
    text-decoration: none; 
    color: inherit;        
    display: block;        
}

.infor-frequ  img {
    width: 30px;
    height: 30px;
}

.infor-frequ h4 {
    font-size: 0.8rem;
    /* padding-top: 10px; */
}

/* modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 30px;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 180px auto 0; 
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    height: auto;
    position: relative;
    font-family: sans-serif;
    display: block !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#formContato {
    display: flex;
    flex-direction: column;
    gap: 8px;             
    width: 100%;
}

#formContato input, 
#formContato textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
}

#formContato textarea {
    resize: none;         
}

#formContato button {
    width: 100%;           
    padding: 10px;
    margin-top: 5px;
    background-color: #28a745; 
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: block;        
}

/* Botão Fechar */
.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Estilização do Formulário */
#formContato input, #formContato textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
}

#formContato button {
    background-color: #128c54; 
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

#formContato button:hover {
    background-color: #0056b3;
}
/* fim modal */
/* DÚVIDAS FREQUENTE */
/* FIM FÁCIL CONTÁBIL */

/* FALE CONOSCO */
.contato-container {
    background-color: #103057;
    color: white;
    padding: 60px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

/* Títulos */
.contato-header h2 {
    color: #b5cc22;
    /* Verde limão */
    font-size: 2.1rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.contato-header h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: #ffffff;
}

.contato-header p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 2.5px;
}

/* Formulário e Grid */
.contato-form {
    max-width: 900px;
    margin: 0 auto;
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Estilo dos Inputs */
.contato-form input,
.contato-form textarea {
    background-color: #455a71;
    border: none;
    border-radius: 4px;
    padding: 12px;
    color: white;
    font-size: 1rem;
    border-bottom: 1px solid #ffffff;
}

.contato-form input:hover,
.contato-form textarea:hover {
    background-color: #2d3745;
}

/* Linha da Mensagem e Botão */
.footer-row {
    align-items: flex-end;
}

.textarea-group {
    flex: 2;
}

.button-group {
    flex: 1;
    text-align: right;
}

/* Botão Enviar */
.contato-form button {
    background-color: white;
    color: #0a213a;
    border: none;
    padding: 12px 60px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contato-form button:hover {
    background-color: #b5cc22;
}
/* FIM FALE CONOSCO */

/* RODAPÉ */
.footer-valverde {
    background-color: #0a213a;
    padding: 80px 40px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Colunas */
.footer-left,
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-left {
    padding-right: 40px;
}

/* Título e Textos */
.brand-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-row a {
    text-decoration: none;
    color: white;
}

.contact-row img {
    width: 24px;
    height: auto;
    margin-top: 4px;
}

.contact-row p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 300;
}

/* Linha Divisória */
.vertical-line {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    height: 250px;
    align-self: center;
}

/* Links da Direita */
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

/* Coluna da Direita */
.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding-left: 40px;
}


.center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.copyright-text {
    margin-top: 50px;
    font-size: 0.85rem;
    opacity: 0.8;
    color: white;
}

@keyframes flutuar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 2. Aplicando a animação ao botão */
.whatsapp-btn-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 250px;
    height: 50px;
    background-color: #25d366;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: flutuar 3s ease-in-out infinite;
}

.whatsapp-btn-fixed:hover {
    background-color: #20ba5a;
    animation-play-state: paused;
    transform: scale(1.1);
}

.whatsapp-btn-fixed img {
    width: 35px;
    height: auto;
}

.footer-content a {
    text-decoration: none;
    color: white;
}

.footer-content a img {
    width: 25px;
}

#texto-dinamico {
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
    margin-left: 10px;
    color: white; 
    font-family: sans-serif; 
    font-size: 14px;
    white-space: nowrap; 
}

.fade-out {
    opacity: 0;
}
/* FIMRODAPÉ */