*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

:root{
    --text-color: #fff;
    --bg-color: #241b1b;
    --second-bg-color: #22282f;
    --main-color: #03fa6e;
    --other-color: #c3cad5;

    --h1-font: 4.5rem;
    --h2-font: 2.9rem;
    --p-font: 1rem;
}

body{
    color: var(--text-color);
    background: var(--bg-color);
}

/* CABEÇALHO DO SITE */
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 16%;
    background: transparent;
    transition: all .50s ease;

}
/* CABEÇALHO DO SITE AO DESCER A PÁGINA*/
header.sticky{
    background: var(--second-bg-color);
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, .2);
    padding: 16px 16%;
}
/* LOGO EM TEXTO */
.logo{
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
}
/* TODOS OS SPANS */
span{
    color: var(--main-color);
}
/* LISTA DE ITENS NO CABEÇALHO DO SITE */
.navlist{
    display: flex;
}

.navlist a{
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--other-color);
    margin-left: 40px;
    transition: all .50s ease;
}

.navlist a:hover{
    color: var(--main-color);
    text-shadow: 3px 3px 20px var(--main-color), -2px 1px 30px var(--text-color);
}
/* PARA QUANDO RECOLHE A PÁGINA E FICA EM TAMANHO MOBILE */
#menu-icon{
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

/* BOTÃO SUPERIOR PARA ENTRAR EM CONTATO */
.h-btn{
    display: inline-block;
    padding: 11px 26px;
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .50s ease;
}

.h-btn:hover{
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--main-color);
    transform: scale(1.1);
}

/* CARROSEL INICIAL E PÁGINA HOME */
section#home {
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative; /* Permite que a seção de serviços se sobreponha */
    z-index: 0; /* Garante que esta seção fique atrás da seção de serviços */
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.95); /* Começa com um leve zoom out */
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1); /* Zoom in para o slide ativo */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    text-align: center;
    max-width: 90%;
    box-sizing: border-box;
}

.carousel-caption h1 {
    font-size: var(--h1-font);
    font-weight: 700;
    transition: transform 1s ease-in-out;
}

.carousel-caption h2 {
    font-size: 1.5em;
    font-weight: normal;
    margin-top: 10px;
    transition: transform 1s ease-in-out;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-navigation button {
    background-color: transparent;
    border: none;
    color: var(--other-color);
    cursor: pointer;
    font-size: 60px;
    padding: 10px;
    pointer-events: all;
    transition: color 0.3s ease;
}

.carousel-navigation button:hover {
    color: var(--main-color);
}

.prev-button {
    position: absolute;
    left: 100px;
}

.next-button {
    position: absolute;
    right: 100px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicators li.active {
    background-color: rgba(255, 255, 255, 1);
}


/* SEÇÃO DE SERVIÇOS */
.services-section {
    position: relative; /* Permite o uso de z-index */
    padding: 60px 20px;
    background-color: var(--second-bg-color);
    text-align: center;
    margin-top: -30px; /* Move a seção para cima, sobrepondo a seção superior */
    border-radius: 45px 45px 0 0; /* Arredondamento para combinar com a seção */
    z-index: 1; /* Assegura que a seção sobreponha a seção anterior */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra para destaque */
}
  
.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-heading h1{
    font-size: var(--h1-font);
    font-weight: 700;
    margin-bottom: 15px;
}

.services-heading h2 {
    font-size: var(--h2-font);
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
}

.services-heading p {
    font-size: 18px;
    color: var(--other-color);
    margin-bottom: 40px;
}

.service {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-image {
    flex: 0 0 150px;
    margin: 20px;
}

.service-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-content {
    max-width: 500px;
    padding: 20px;
    text-align: left;
}

.service-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content hr {
    border: none;
    height: 2px;
    width: 100px;
    margin: 10px 0;
    background: linear-gradient(to right, var(--second-bg-color), var(--main-color), var(--second-bg-color));
    position: relative;
    overflow: visible;
}
  
.service-content hr::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
}

.service-content p {
    font-size: 16px;
    color: var(--other-color);
}

.saiba-mais{
    display: inline-block;
    padding: 11px 26px;
    background: transparent;
    color: var(--main-color);
    cursor: pointer;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: all .50s ease;
    margin-top: 20px;
}

.saiba-mais:hover{
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--main-color);
    transform: scale(1.1);
}

/* PRODUTOS */
.produtos-section {
    position: relative;
    background: #f9f9f9;
    text-align: center;
    padding: 40px 20px;
    margin-top: -30px;
    border-radius: 45px 45px 0 0;
    z-index: 1;
    min-height: 80vh;
}

.produtos-section h2 {
    font-size: 2.5rem; /* Ajuste conforme necessário */
    font-weight: 700;
    color: var(--second-bg-color);
    margin-bottom: 20px;
}

.produtos-section hr {
    border: none;
    height: 2px;
    margin: 0 auto;
    width: 20%;
    background: linear-gradient(to right, var(--second-bg-color), var(--main-color), var(--second-bg-color));
    position: relative;
    margin-bottom: 30px;
    margin-top: -10px;
}

.produtos-section hr::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
}

.produtos-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 800px; /* Limita a largura máxima do carrossel */
    margin: 0 auto; /* Centraliza o carrossel */
}

.produto-item {
    display: none; /* Esconde todos os produtos por padrão */
    flex: 0 0 100%; /* Garante que cada produto ocupe 100% do contêiner */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-item.active {
    display: flex; /* Mostra apenas o produto ativo */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.media-carousel {
    width: 100%;
    max-width: 100%; /* Ajuste conforme necessário */
    margin-bottom: 20px; /* Espaço entre o vídeo e a descrição */
}

.media-carousel video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.produto-descricao {
    width: 98%;
    padding: 20px;
    text-align: left;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 3px;
}

.produto-descricao h5 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.produto-descricao p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.produtos-carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.produtos-carousel-navigation button {
    background-color: transparent;
    border: none;
    color: var(--other-color);
    cursor: pointer;
    font-size: 30px;
    padding: 10px;
    transition: color 0.3s ease;
}

.produtos-carousel-navigation button:hover {
    color: var(--main-color);
}

.produtos-carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.produtos-carousel-indicators div {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.produtos-carousel-indicators .active {
    background-color: var(--main-color);
}

.character-image {
    position: absolute;
    right: 60px; /* Ajuste conforme necessário */
    top: 50%;
    transform: translateY(-50%);
    width: 280px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    z-index: 2; /* Certifique-se de que a imagem fique acima de outros elementos */
}



/* GANHOS DOS PRODUTOS */
.ganhos-section {
    background: #f9f9f9;
    text-align: center;
    min-height: 60vh;
    /* border-bottom: 5px solid var(--main-color); */
}

.ganhos-section hr {
    border: none;
    height: 2px;
    margin: 20px auto;
    width: 10%;
    background: linear-gradient(to right, var(--second-bg-color), var(--main-color), var(--second-bg-color));
}

.ganhos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ganhos-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--second-bg-color);
    margin-bottom: 10px;
}

.ganhos-heading h2 span {
    font-weight: 800;
    color: var(--main-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.ganhos-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ganhos-box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ganhos-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--main-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.ganhos-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ganhos-box:hover::before {
    transform: scaleY(1);
}

.ganhos-box .icon {
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--main-color);
}

.ganhos-box .icon i {
    margin-right: 10px;
}

.ganhos-box .content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* CARDS DE CONTAGEM */
.counter-section {
    padding-top: 1rem; /* Ajuste de padding para continuidade visual */
    background: #f9f9f9;
    padding: 3rem 1rem;
    text-align: center;
    margin: 0; /* Remove margens entre as seções */
}

.counter-section .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.counter-section .container > div {
    flex: 1 1 200px;
    min-width: 200px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px var(--main-color);
}

.counter-section .container > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.counter-section h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.counter-section h2 span {
    display: block;
    font-size: 1.2rem;
    color: #555;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--second-bg-color);
    margin-top: 0.5rem;
}

/* CLIENTES ATENDIDOS */
.clientes-section {
    padding-top: 1rem; /* Ajuste de padding para continuidade visual */
    background: #f9f9f9;
    padding: 3rem 1rem;
    text-align: center;
    margin: 0; /* Remove margens entre as seções */
}

.clientes-section h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.clientes-section hr {
    border: none;
    height: 2px;
    margin: 1rem auto;
    width: 20%;
    background: linear-gradient(to right, var(--second-bg-color), var(--main-color), var(--second-bg-color));
    position: relative;
}
  
.clientes-section hr::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
}

.famous-brands {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.animate {
    display: flex;
    animation: slide 90s linear infinite;
}

.animate img {
    max-width: 150px;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.animate img:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* NOVA SECTION */
.clientes-2-section {
    padding-top: 1rem; /* Ajuste de padding para continuidade visual */
    background: #f9f9f9;
    padding: 3rem 1rem;
    text-align: center;
    margin: 0; /* Remove margens entre as seções */
}
  
.clientes-2-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
  
.clientes-2-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.clientes-2-section .col-md-6 {
    width: 50%;
    padding: 20px;
}

.clientes-2-section .col-md-3 {
    width: 25%;
    padding: 20px;
}

.clientes-2-section .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.clientes-2-section .section-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.clientes-2-section .image-container {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.clientes-2-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clientes-2-section .client-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.clientes-2-section .client-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}


/* RODAPÉ */
.footer {
    background-color: var(--second-bg-color);
    color: var(--text-color);
    text-align: center;
    padding: 60px 20px;
    position: relative;
    margin-top: -40px;
    border-radius: 45px 45px 0 0;
    z-index: 1;
}

/* Container Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%; /* Utilize 100% da largura disponível */
    padding: 0 40px; /* Ajuste o padding para criar espaço lateral */
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 280px; /* Ajuste para melhor distribuição em telas maiores */
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px; /* Espaço interno para cada seção */
}

.logo-footer {
    width: 180px;
    margin-bottom: 15px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex; /* Ativa o Flexbox */
    flex-direction: column; /* Alinha os itens verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente, se necessário */
    margin: 0 auto; /* Centraliza o próprio ul dentro do contêiner pai */
}

.footer-section ul li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1rem;
    color: #bdc3c7;
}

.footer-section ul li i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--main-color);
}

.footer-section a {
    color: var(--other-color);
    text-decoration: none;
}

.footer-section a:hover {
    color: #3498db;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    display: flex; /* Ativa o Flexbox */
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente, se necessário */
    margin: 0 auto; /* Centraliza o próprio ul dentro do contêiner pai */
}

.social-icons a {
    color: #ecf0f1;
    font-size: 28px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--main-color);
}

/* Map Section */
.footer-map {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 6px 6px 0 var(--main-color);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Whatsapp Button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite; /* Aplica a animação */
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #1e3a3a 0%, var(--second-bg-color) 100%); /* Cor inicial mais escura */
    color: var(--text-color);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.cookie-banner p {
    flex: 1;
    margin-right: 20px;
}

.cookie-banner button {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.cookie-banner button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: scale(1.1);
}

/* COOKIE MANAGEMENT MODAL */
.cookie-modal {
    position: fixed;
    bottom: 10%;
    right: 10%;
    width: 320px;
    background-color: var(--second-bg-color);
    color: var(--text-color);
    padding: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    z-index: 10000;
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.cookie-modal.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--main-color);
}

.cookie-modal div {
    margin-bottom: 15px;
}

.cookie-modal label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--other-color);
}

.cookie-modal input[type="checkbox"] {
    margin-right: 12px;
    accent-color: var(--main-color);
    transform: scale(1.2);
}

.cookie-modal button {
    background-color: var(--main-color);
    color: var(--bg-color);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.cookie-modal button:hover {
    background-color: white; /* Cor mais escura no hover */
    transform: scale(1.05);
}


/* Dispositivos móveis: Smartphones em modo retrato */
@media (max-width: 1400px) {
    /* Ajustes no cabeçalho */
    header {
        padding: 20px 5%;
    }
    header.sticky .h-btn {
        padding: 5px 9px; /* Ajuste no padding para caber no layout sticky */
        font-size: 12px;
        border-radius: 6px;
        transform: scale(1); /* Remover transformação de scale para evitar distorção */
    }
    .logo {
        font-size: 24px;
    }
    .navlist {
        display: none; /* Esconder a barra de navegação em telas pequenas */
    }
    #menu-icon {
        display: block; /* Mostrar o ícone do menu hambúrguer */
    }
    /* Ajustes no carrossel */
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    .prev-button, .next-button {
        display: none;
    }
    /* Ajustes nas seções de serviços */
    .service {
        flex-direction: column; /* Assegura que a imagem fique em cima da descrição */
        align-items: center;
    }
    .services-heading h1 {
        font-size: 1.8rem;
    }
    .services-heading h2 {
        font-size: 1.4rem;
    }
    .services-heading p {
        font-size: 0.9rem;
    }
    .service-image {
        margin-bottom: 15px;
    }
    .service-image img {
        width: 150px;
        height: 150px;
    }
    .service-content h3 {
        font-size: 24px;
    }
    .service-content p {
        font-size: 14px;
    }
    /* Ajustes na seção de produtos */
    .produtos-section h2 {
        font-size: 1.8rem;
    }
    .produto-descricao h5 {
        font-size: 1.2rem;
    }
    .produto-descricao p {
        font-size: 14px;
    }
    /* Ajustes nos ganhos */
    .ganhos-heading h2 {
        font-size: 1.8rem;
    }
    .ganhos-boxes {
        grid-template-columns: 1fr; /* Uma coluna para se ajustar ao mobile */
    }
    .ganhos-box .content p {
        font-size: 14px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .section-text p {
        font-size: 0.9rem;
    }
    /* Ajustes na seção de clientes */
    .col-md-6, .col-md-3 {
        width: 100%; /* Expandir colunas para ocupar a largura total em dispositivos móveis */
    }
    .client-card {
        margin-bottom: 20px; /* Adicionar espaçamento entre os cards de clientes */
    }
    /* Ajustes nos planos e valores */
    .pricing-container {
        width: 90%;
    }
    .price{
        font-size: 20px;
    }
    /* Footer */
    .footer-section {
        min-width: 100%;
    }
    .character-image {
        display: none; /* Ocultar a imagem do personagem em dispositivos móveis */
    }
    .counter-section .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Dois boxes por linha */
        gap: 20px; /* Espaçamento entre as boxes */
    }
    
    .counter-section .container > div {
        flex: 1 1 50px;
        min-width: 100px;
        padding: 1.2rem;
    }
    
    .counter-section h2 {
        font-size: 0.9rem; /* Ajustando tamanho das fontes */
        margin-bottom: 10px;
    }
    
    .counter {
        font-size: 1.2rem; /* Ajuste para tornar o contador mais legível */
        margin-top: 10px;
    }

    .clientes-2-section .col-md-6,
    .clientes-2-section .col-md-3 {
        flex: 0 0 50%; /* Faz com que as colunas ocupem 100% da largura em telas menores */
        max-width: 50%; /* Garante que as colunas não excedam a largura do contêiner */
    }

    .clientes-2-section .section-title h2 {
        font-size: 1.5rem; /* Ajusta o tamanho da fonte para ser mais legível em telas menores */
    }

    .clientes-2-section .section-text p {
        font-size: 0.9rem; /* Ajusta o tamanho do texto para ser mais legível */
    }

    .clientes-2-section .client-card {
        margin-bottom: 10px; /* Adiciona um espaço entre os cards */
    }

    .consultation-btn {
        font-size: 15px;
    }
    
}

@media (max-width: 768px) {
    .clientes-2-section .col-md-6,
    .clientes-2-section .col-md-3 {
        flex: 0 0 100%; /* Faz com que as colunas ocupem 100% da largura em telas menores */
        max-width: 100%; /* Garante que as colunas não excedam a largura do contêiner */
    }

    .clientes-2-section .section-title h2 {
        font-size: 1.8rem; /* Ajusta o tamanho da fonte para ser mais legível em telas menores */
    }

    .clientes-2-section .section-text p {
        font-size: 1rem; /* Ajusta o tamanho do texto para ser mais legível */
    }

    .clientes-2-section .client-card {
        margin-bottom: 20px; /* Adiciona um espaço entre os cards */
    }
}

/* === Acessibilidade & utilitários (adições seguras) === */

/* Mantém links com aparência "neutra" quando usados dentro de botões/cards */
.link-inherit {
  color: inherit;
  text-decoration: none;
}
.link-inherit:focus,
.link-inherit:hover {
  text-decoration: underline; /* feedback mínimo; remova se não quiser */
}

/* Estado "oculto" sem impactar display: você pode só alternar aria-hidden, e o CSS decide. */
.cookie-modal[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease-in;
}
.cookie-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Opcional: foco visível (melhora navegação por teclado) */
:focus {
  outline: 2px solid #6aa8ff;
  outline-offset: 2px;
}

/* === Botões em cards de produto === */
.produto-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--main-color);
  color: #000;
}
.btn-primary:hover {
  background: #00e363;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--main-color);
  color: var(--main-color);
}
.btn-secondary:hover {
  background: var(--main-color);
  color: #000;
  transform: translateY(-2px);
}

/* Offset padrão para páginas internas (corrigido dinamicamente via JS) */
.inner-page {
  padding-top: 120px; /* fallback; o JS vai recalcular isso pelo header real */
}

/* Em telas menores o header é mais compacto; fallback reduzido */
@media (max-width: 1400px) {
  .inner-page {
    padding-top: 80px;
  }
}

/* Espaço “virtual” do header fixo — mesma sensação do index */
.header-offset {
  height: 120px;          /* bate com o padding do header no desktop */
}

/* Em telas menores o header fica mais compacto; ajusta o offset também */
@media (max-width: 1400px) {
  .header-offset { height: 80px; }
}

.product-landing .services-section {
  background: var(--bg-color); /* #241b1b, igual body */
  margin-top: 0 !important;
  border-radius: 0;
}



/* =========================
   CALCULADORA RPA / IA
   ========================= */
/* ===== CALC v2 — Container e cartões ===== */
.calc2-section { background: #0b0f13; padding: 48px 16px; }
.calc2-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 24px; }

.calc2-card {
  background: #0f1418; color: #e8f1ed; border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 18px; box-shadow: 0 8px 16px rgba(0,0,0,.18);
}
.calc2-head h3 { font-size: 1.15rem; margin-bottom: 6px; }

.calc2-field { display: grid; gap: 8px; margin-top: 14px; }
.calc2-label { font-weight: 800; color: #f2fbf7; }
.calc2-row { display: grid; grid-template-columns: 1fr 110px; gap: 10px; align-items: center; }
.calc2-meta { display:flex; align-items:center; justify-content: space-between; }

.calc2-pill {
  background: rgba(3,250,110,.12); color: var(--text-color); border: 1px solid rgba(3,250,110,.35);
  padding: 6px 10px; border-radius: 999px; font-weight: 700;
}
.help { color: #9fb0b4; }

#conv-dia-num, #abertura-num {
  padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.08);
  background: #111a20; color: #e8f1ed; outline: none;
}
#conv-dia, #abertura {
  appearance: none; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--main-color), #00df63); outline: none;
}
#conv-dia::-webkit-slider-thumb, #abertura::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 18px; height:18px; border-radius:50%;
  background:#fff; border:2px solid var(--main-color); box-shadow:0 0 0 4px rgba(3,250,110,.15); cursor:pointer;
}

.calc2-actions { display:flex; gap: 10px; margin-top: 16px; }
.btn-compact { padding: 8px 12px; font-size: .9rem; border-radius: 8px; }

/* ===== Summary (sticky) ===== */
.calc2-summary {
  position: sticky; top: 110px; background:#0f1418; color:#e6f5ee;
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}
.calc2-summary-head { display:flex; align-items:flex-start; justify-content: space-between; gap: 10px; }
.calc2-kicker { font-size: .9rem; color:#c3cad5; margin-bottom: 4px; }
.calc2-total { font-size: 1.8rem; font-weight: 800; line-height: 1.1; }

.calc2-meter { height: 8px; background:#101920; border-radius: 999px; margin: 12px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.calc2-meter-fill { height: 100%; width: 0; background: linear-gradient(90deg, #00df63, var(--main-color)); transition: width .25s ease; }

.calc2-meta2 { color:#c3cad5; margin-top: 6px; }
.calc2-summary-cta { margin-top: 14px; }
.calc2-details summary { cursor: pointer; color: var(--main-color); margin-top: 8px; }
.calc2-breakdown { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.calc2-breakdown li { display:flex; align-items:center; justify-content: space-between; border-bottom: 1px dashed rgba(255,255,255,.12); padding-bottom: 6px; }
.calc2-breakdown li:last-child { border-bottom: 0; }
.calc2-foot { margin-top: 10px; color: #9fb0b4; font-size: .9rem; }

/* CTA maior (você já tem .cta-big/.cta-pulse no seu CSS) */
.cta-big { font-size: 1.05rem; padding: 14px 24px; border-radius: 12px; box-shadow: 0 8px 24px rgba(3,250,110,.18); }
.cta-big:hover { transform: translateY(-2px); }
.cta-pulse { animation: pulse 2.2s infinite; }
@media (prefers-reduced-motion: reduce) { .cta-pulse { animation: none; } }

/* Premissas (rodapé da página) — você já tem base; reforço aqui o tema escuro do bloco anterior */
.premissas-section { background: #0b0f13; padding: 16px 16px 56px; border-top: 1px solid rgba(255,255,255,.06); }
.premissas-container { max-width: 1100px; margin: 0 auto; }
.premissas-container h3 { color: #e8f1ed; font-size: 1.1rem; margin-bottom: 12px; }
.premissas-chips { display:flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.premissas-chips li {
  font-size: .9rem; color:#dbece5; background:#122027; border:1px solid rgba(255,255,255,.08);
  padding: 8px 12px; border-radius: 999px;
}

/* Responsivo */
@media (max-width: 1000px) {
  .calc2-container { grid-template-columns: 1fr; }
  .calc2-summary { position: static; }
}