/* --- 1. Reset e Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

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

/* --- 2. Tipografia e Seções --- */
h2 {
    font-size: 32px;
    color: #0a2540;
    margin-bottom: 40px;
    text-align: center;
}

section {
    padding: 80px 0;
}

/* --- 3. Hero --- */
#hero {
    background-color: #ffffff;
    text-align: center;
    padding-top: 60px;
}

#hero h1 {
    font-size: 40px;
    color: #0a2540;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero ul {
    list-style: none;
    margin: 30px 0;
    font-weight: 600;
    color: #0a2540;
}

.video-container {
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}


/* --- Imagem principal e mensagem do Hero --- */
.hero-image-container {
    width: 100%;
    max-width: 800px;
    margin: 38px auto 24px;
    padding: 10px;
    background-color: #f5f8fb;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(10, 37, 64, 0.12);
}

.hero-image-container img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 9px;
}

#hero .hero-mensagem {
    max-width: 850px;
    margin: 0 auto 30px;
    color: #0a2540;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .hero-image-container {
        margin-top: 28px;
        padding: 7px;
        border-radius: 11px;
    }

    #hero .hero-mensagem {
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.6;
    }
}

/* --- 4. Botão (CTA) --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #0a2540;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #27ae60;
}

/* --- 5. Provas Rápidas (Grid) --- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stats span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #0a2540;
}

/* --- 6. Mockups e Grid (O que você recebe) --- */
.grid-mockups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.item {
    background: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 4px;
}

/* --- 7. Footer --- */
footer {
    background-color: #0a2540;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

/* --- 8. Responsividade --- */
@media (max-width: 768px) {
    #hero h1 { font-size: 28px; }
    .grid-mockups { grid-template-columns: 1fr; }
}

.section-footer {
    text-align: center;
    margin-top: 20px; /* Isso dá um respiro entre o grid e o texto */
}

/* Ajuste do card da seção */

/* Redução da imagem para o tamanho ideal */

/* Ajuste do texto no card */


/* Container da oferta (o quadro) */
.oferta-card {
    background-color: #ffffff; /*banner de fundo*/
    color: #0f0f0f;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.custo-oportunidade {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.custo-oportunidade strong {
    color: #e74c3c; /* Vermelho suave para destaque do prejuízo */
}

.preco-box .de {
    text-decoration: line-through;
    color: #080808;
    margin-bottom: 5px;
}

.preco-box .por {
    font-size: 3rem;
    font-weight: 800;
    color: #2ecc71; /* Verde */
    margin: 0;
}

.preco-box .detalhes {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.garantia-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #080808;
}

/* Ajuste específico para o botão ficar bem centralizado no quadro */
#oferta .btn {
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.faq-item { margin-bottom: 15px; border-bottom: 1px solid #eee; }

.faq-pergunta {
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Animação suave */
    padding: 0 20px;
    background: #fff;
}

/* Estilo do botão */
.faq-pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

/* A Seta */
.seta {
    font-size: 1.5rem;
    transition: transform 0.3s; /* Animação da rotação */
    display: inline-block;
}

/* Classe que vamos adicionar via JS para girar a seta */
.faq-item.active .seta {
    transform: rotate(90deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    padding: 0 20px;
}

#depoimentos { padding: 50px 0; overflow: hidden; }

.carousel {
    display: flex;
    overflow-x: auto; /* Permite rolar para o lado */
    scroll-snap-type: x mandatory; /* Faz travar nas fotos */
    gap: 20px;
    padding: 20px;
    -webkit-overflow-scrolling: touch; /* Suavidade no iPhone */

    /* Mantém a rolagem funcional, mas sem exibir a barra. */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Esconde a barra de rolagem para ficar clean */
.carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.carousel-item {
    flex: 0 0 280px; /* Largura fixa de cada print */
    scroll-snap-align: center; /* Centraliza a imagem no carrossel */
}

.carousel-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Altera o cursor para indicar que o elemento é arrastável */
.carousel {
    cursor: grab;
}

.carousel-item video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}

/* Garante que imagens e vídeos tenham o mesmo tamanho e comportamento */
.carousel-item img, 
.carousel-item video {
    width: 280px;      /* Largura fixa igual para todos */
    height: 550px;     /* Defina a altura que você preferir para o carrossel */
    object-fit: cover; /* Faz o conteúdo preencher o espaço sem distorcer */
    border-radius: 15px;
    display: block;
}

/* Opcional: remove bordas padrão de alguns vídeos */
.carousel-item video {
    background-color: #000;
}

/* Posiciona o botão de som sobre o vídeo */
.carousel-item {
    position: relative;
}

.botao-som {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Força o vídeo a ocupar todo o espaço do item */
.carousel-item video {
    width: 280px;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
}

#provas {
    background-color: #f5f8fb;
    padding: 80px 0;
}

#provas .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 28px;
}

/* Cada mensagem vira um card */
#provas .stats > div {
    position: relative;
    background-color: #ffffff;
    min-height: 230px;
    padding: 38px 28px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(10, 37, 64, 0.07);

    /* Sombra para não parecer grudado na parede */
    box-shadow:
        0 10px 25px rgba(10, 37, 64, 0.10),
        0 3px 8px rgba(10, 37, 64, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Pequeno detalhe verde no topo */
#provas .stats > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 4px;
    background-color: #0a2540;
    border-radius: 0 0 6px 6px;
}

/* Título de cada card */
#provas .stats span {
    display: block;
    margin-bottom: 12px;

    color: #0a2540;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
}

/* Texto de cada card */
#provas .stats > div {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

/* Efeito quando passa o mouse */
#provas .stats > div:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(10, 37, 64, 0.15),
        0 6px 15px rgba(10, 37, 64, 0.08);
}

/* Tablet */
@media (max-width: 900px) {
    #provas .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    #provas .stats > div:last-child {
        grid-column: 1 / -1;
    }
}

/* Celular */
@media (max-width: 600px) {
    #provas {
        padding: 55px 0;
    }

    #provas .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #provas .stats > div,
    #provas .stats > div:last-child {
        grid-column: auto;
        min-height: auto;
        padding: 32px 22px;
    }

    #provas .stats span {
        font-size: 23px;
    }
}

#o-que-recebe {
    background-color: #f5f8fb;
    padding: 80px 0;
}

/* Título da seção */
#o-que-recebe h2 {
    max-width: 900px;
    margin: 0 auto 45px;
    color: #0a2540;
    line-height: 1.3;
}

/* Organização dos seis cards */
#o-que-recebe .grid-mockups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 28px;
}

/* Cada item vira um card elevado */
#o-que-recebe .item {
    position: relative;
    overflow: hidden;

    min-height: 230px;
    padding: 38px 28px;

    background-color: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.07);
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    /* Sombra para destacar o card do fundo */
    box-shadow:
        0 10px 25px rgba(10, 37, 64, 0.10),
        0 3px 8px rgba(10, 37, 64, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Detalhe verde na parte superior */
#o-que-recebe .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;

    height: 4px;
    background-color: #0a2540;
    border-radius: 0 0 6px 6px;
}

/* Título de cada card */
#o-que-recebe .item h3 {
    margin-bottom: 12px;

    color: #0a2540;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

/* Texto de cada card */
#o-que-recebe .item p {
    margin: 0;

    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

/* Efeito ao passar o mouse */
#o-que-recebe .item:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, 0.25);

    box-shadow:
        0 20px 40px rgba(10, 37, 64, 0.15),
        0 6px 15px rgba(10, 37, 64, 0.08);
}

/* Texto abaixo dos cards */
#o-que-recebe .section-footer {
    max-width: 900px;
    margin: 35px auto 0;

    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

/* Destaque do texto "100% editáveis" */
#o-que-recebe .section-footer strong {
    color: #0a2540;
    font-weight: 800;
}

/* Tablet */
@media (max-width: 900px) {
    #o-que-recebe .grid-mockups {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 650px) {
    #o-que-recebe {
        padding: 55px 0;
    }

    #o-que-recebe h2 {
        margin-bottom: 30px;
        font-size: 27px;
    }

    #o-que-recebe .grid-mockups {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #o-que-recebe .item {
        min-height: auto;
        padding: 32px 22px;
    }

    #o-que-recebe .item h3 {
        font-size: 20px;
    }

    #o-que-recebe .section-footer {
        margin-top: 28px;
        font-size: 15px;
    }
}

/* ========================================
   SEÇÃO DE OFERTA E CHECKOUT
======================================== */

#oferta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background-color: #ffffff;
}

/* Efeito suave atrás do checkout */
#oferta::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;

    width: 75%;
    max-width: 760px;
    height: 180px;

    background: rgba(10, 37, 64, 0.08);
    border-radius: 50%;

    transform: translateX(-50%);
    filter: blur(45px);

    pointer-events: none;
}

/* Card principal do checkout */
#oferta .oferta-card {
    position: relative;
    z-index: 1;
    overflow: hidden;

    max-width: 820px;
    margin: 0 auto;
    padding: 55px 50px;

    background-color: #ffffff;
    color: #333333;

    border: 1px solid rgba(10, 37, 64, 0.09);
    border-radius: 20px;

    box-shadow:
        0 22px 55px rgba(10, 37, 64, 0.14),
        0 8px 18px rgba(10, 37, 64, 0.07);

    text-align: center;
}

/* Detalhe azul na parte superior */
#oferta .oferta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;

    height: 6px;
    background-color: #0a2540;
    border-radius: 0 0 8px 8px;
}

/* Título */
#oferta .oferta-card h2 {
    max-width: 650px;
    margin: 0 auto 28px;

    color: #0a2540;
    font-size: 34px;
    line-height: 1.25;
}

/* Texto sobre o custo de oportunidade */
#oferta .custo-oportunidade {
    max-width: 680px;
    margin: 0 auto 35px;

    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

/* Mantém o prejuízo destacado */
#oferta .custo-oportunidade strong {
    color: #e74c3c;
    font-weight: 800;
}

/* Caixa do preço */
#oferta .preco-box {
    max-width: 550px;
    margin: 0 auto 30px;
    padding: 28px 30px;

    background-color: rgba(10, 37, 64, 0.045);
    border: 1px solid rgba(10, 37, 64, 0.09);
    border-radius: 14px;
}

/* Preço antigo com maior destaque */
#oferta .preco-box .de {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;
    padding: 7px 16px;

    background-color: rgba(10, 37, 64, 0.08);
    color: #0a2540;

    border: 1px solid rgba(10, 37, 64, 0.13);
    border-radius: 999px;

    font-size: 17px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}

/* Traço mais evidente sobre o preço antigo */
#oferta .preco-box .de::after {
    content: "";
    position: absolute;

    top: 50%;
    left: 10px;
    right: 10px;

    height: 2px;
    background-color: #e74c3c;
    border-radius: 999px;

    transform: translateY(-50%) rotate(-4deg);
}

/* Preço principal */
#oferta .preco-box .por {
    margin: 0;

    color: #0a2540;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
}

/* Detalhes do pagamento */
#oferta .preco-box .detalhes {
    margin: 12px 0 0;

    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

/* Botão do checkout */
#oferta .btn-checkout {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 500px;
    min-height: 66px;
    margin: 0 auto;

    padding: 18px 28px;

    background-color: #0a2540;
    color: #ffffff;

    border: 2px solid #0a2540;
    border-radius: 10px;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    letter-spacing: 0.2px;

    box-shadow:
        0 12px 25px rgba(10, 37, 64, 0.24),
        0 4px 10px rgba(10, 37, 64, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

/* Brilho passando pelo botão */
#oferta .btn-checkout::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

/* Efeito ao passar o mouse */
#oferta .btn-checkout:hover {
    background-color: #123b61;
    border-color: #123b61;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(10, 37, 64, 0.3),
        0 7px 15px rgba(10, 37, 64, 0.14);
}

#oferta .btn-checkout:hover::before {
    left: 150%;
}

/* Efeito ao clicar */
#oferta .btn-checkout:active {
    transform: translateY(-1px);
}

/* Destaque de teclado e acessibilidade */
#oferta .btn-checkout:focus-visible {
    outline: 4px solid rgba(10, 37, 64, 0.25);
    outline-offset: 4px;
}

/* Garantia */
#oferta .garantia-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 24px;
    padding: 11px 18px;

    background-color: rgba(10, 37, 64, 0.06);
    border-radius: 999px;
}

#oferta .garantia-footer p {
    margin: 0;

    color: #0a2540;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* Tablet e celular */
@media (max-width: 768px) {
    #oferta {
        padding: 60px 0;
    }

    #oferta .oferta-card {
        padding: 45px 25px;
        border-radius: 16px;
    }

    #oferta .oferta-card::before {
        left: 25px;
        right: 25px;
    }

    #oferta .oferta-card h2 {
        font-size: 28px;
    }

    #oferta .preco-box {
        padding: 25px 18px;
    }

    #oferta .preco-box .por {
        font-size: 39px;
    }

    #oferta .btn-checkout {
        min-height: 62px;
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* Celulares pequenos */
@media (max-width: 420px) {
    #oferta .oferta-card {
        padding: 40px 18px;
    }

    #oferta .oferta-card h2 {
        font-size: 25px;
    }

    #oferta .custo-oportunidade {
        font-size: 15px;
    }

    #oferta .preco-box .por {
        font-size: 34px;
    }

    #oferta .garantia-footer {
        padding: 10px 13px;
    }

    #oferta .garantia-footer p {
        font-size: 12px;
    }
}

#hero .btn-vsl {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 500px;
    min-height: 66px;
    padding: 18px 28px;

    background-color: #0a2540;
    color: #ffffff;

    border: 2px solid #0a2540;
    border-radius: 10px;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-decoration: none;

    box-shadow:
        0 12px 25px rgba(10, 37, 64, 0.24),
        0 4px 10px rgba(10, 37, 64, 0.12);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Brilho que passa pelo botão */
#hero .btn-vsl::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

/* Hover azul, sem ficar verde */
#hero .btn-vsl:hover {
    background-color: #123b61;
    border-color: #123b61;
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(10, 37, 64, 0.3),
        0 7px 15px rgba(10, 37, 64, 0.14);
}

#hero .btn-vsl:hover::before {
    left: 150%;
}

/* Efeito ao clicar */
#hero .btn-vsl:active {
    transform: translateY(-1px);
}

/* Destaque para navegação pelo teclado */
#hero .btn-vsl:focus-visible {
    outline: 4px solid rgba(10, 37, 64, 0.25);
    outline-offset: 4px;
}

/* Ajuste para celular */
@media (max-width: 600px) {
    #hero .btn-vsl {
        max-width: 100%;
        min-height: 60px;
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* Diminui o espaço abaixo do checkout */
#oferta {
    padding-bottom: 35px;
}

/* Deixa o card mais compacto depois de remover a garantia */
#oferta .oferta-card {
    padding-bottom: 45px;
}

/* Remove qualquer espaço antigo caso a classe ainda exista */
#oferta .garantia-footer {
    display: none;
}


/* ========================================
   NOVO BLOCO DE GARANTIA
======================================== */

#garantia {
    padding: 0 0 75px;
    background-color: #ffffff;
}

#garantia .garantia-card {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 26px;

    max-width: 820px;
    margin: 0 auto;
    padding: 30px 36px;

    background-color: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 16px;

    box-shadow:
        0 14px 35px rgba(10, 37, 64, 0.11),
        0 4px 12px rgba(10, 37, 64, 0.05);
}

/* Linha azul na lateral */
#garantia .garantia-card::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;

    width: 5px;
    background-color: #0a2540;
    border-radius: 0 5px 5px 0;
}

/* Área do ícone */
#garantia .garantia-icone {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0a2540;
    background-color: rgba(10, 37, 64, 0.08);

    border-radius: 50%;
}

/* Área do texto */
#garantia .garantia-conteudo {
    flex: 1;
}

/* Pequena etiqueta */
#garantia .garantia-conteudo span {
    display: inline-block;
    margin-bottom: 6px;

    color: #0a2540;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

/* Título */
#garantia .garantia-conteudo h3 {
    margin: 0 0 7px;

    color: #0a2540;

    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
}

/* Texto */
#garantia .garantia-conteudo p {
    max-width: 650px;
    margin: 0;

    color: #4b5563;

    font-size: 15px;
    line-height: 1.65;
}

/* Ajusta o início do FAQ */
#faq {
    padding-top: 70px;
}

@media (max-width: 768px) {
    #oferta {
        padding-bottom: 25px;
    }

    #oferta .oferta-card {
        padding-bottom: 38px;
    }

    #garantia {
        padding-bottom: 55px;
    }

    #garantia .garantia-card {
        padding: 27px 25px;
        gap: 20px;
    }

    #garantia .garantia-icone {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
    }

    #garantia .garantia-conteudo h3 {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    #garantia .garantia-card {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px 23px;

        text-align: left;
    }

    #garantia .garantia-card::before {
        top: 0;
        right: 24px;
        bottom: auto;
        left: 24px;

        width: auto;
        height: 5px;

        border-radius: 0 0 5px 5px;
    }

    #garantia .garantia-icone {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }

    #garantia .garantia-conteudo h3 {
        font-size: 19px;
    }

    #garantia .garantia-conteudo p {
        font-size: 14px;
    }

    #faq {
        padding-top: 55px;
    }
}

#garantia {
    padding-top: 65px;
    padding-bottom: 25px;
}

#faq {
    padding-top: 30px;
}

@media (max-width: 768px) {
    #garantia {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    #faq {
        padding-top: 30px;
    }
}

#faq .faq-cta {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 32px 25px;

    background-color: #f5f8fb;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 16px;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(10, 37, 64, 0.09),
        0 4px 10px rgba(10, 37, 64, 0.04);
}

#faq .faq-cta p {
    margin: 0 0 18px;

    color: #0a2540;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}

#faq .btn-faq {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 470px;
    min-height: 62px;
    padding: 17px 25px;

    background-color: #0a2540;
    color: #ffffff;

    border: 2px solid #0a2540;
    border-radius: 10px;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;

    box-shadow:
        0 12px 25px rgba(10, 37, 64, 0.24),
        0 4px 10px rgba(10, 37, 64, 0.12);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Brilho passando pelo botão */
#faq .btn-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

/* Impede o hover verde da classe geral .btn */
#faq .btn-faq:hover {
    background-color: #123b61;
    border-color: #123b61;
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(10, 37, 64, 0.3),
        0 7px 15px rgba(10, 37, 64, 0.14);
}

#faq .btn-faq:hover::before {
    left: 150%;
}

#faq .btn-faq:active {
    transform: translateY(-1px);
}

#faq .btn-faq:focus-visible {
    outline: 4px solid rgba(10, 37, 64, 0.25);
    outline-offset: 4px;
}

@media (max-width: 600px) {
    #faq .faq-cta {
        margin-top: 30px;
        padding: 27px 18px;
    }

    #faq .faq-cta p {
        font-size: 18px;
    }

    #faq .btn-faq {
        max-width: 100%;
        min-height: 58px;
        padding: 15px 18px;
        font-size: 15px;
    }
}

/* ========================================
   BASE RESPONSIVA FINAL
   Remove a faixa azul e evita estouro lateral
======================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #ffffff;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    border: 0 !important;
}

main.site-content {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #ffffff;
}

section,
.container {
    width: 100%;
    min-width: 0;
}

.container {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 20px;
}

img,
video,
svg {
    max-width: 100%;
}

/* Impede textos e botões compridos de alargarem a página */
h1,
h2,
h3,
p,
a,
button {
    overflow-wrap: break-word;
}

.btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

/* Hero */
#hero {
    margin: 0 !important;
    padding: 45px 0 70px !important;
}

.hero-image-container {
    width: 100%;
    max-width: 800px;
}

.hero-image-container img {
    width: 100%;
    height: auto;
}

/* Carrossel: rola internamente sem aumentar a largura da página */
#depoimentos {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#depoimentos h2 {
    padding-inline: 20px;
}

.carousel {
    width: 100%;
    max-width: 100%;
    overscroll-behavior-inline: contain;
}

.carousel-item {
    min-width: 0;
}

/* Rodapé */
footer {
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background-color: #0a2540;
    color: #ffffff;
}

footer .container,
footer p {
    margin-bottom: 0;
}

#faq {
    margin-bottom: 0;
    padding-bottom: 70px;
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding-inline: 18px;
    }

    section {
        padding-block: 58px;
    }

    h2 {
        margin-bottom: 30px;
        font-size: clamp(25px, 7vw, 30px);
        line-height: 1.3;
    }

    #hero {
        padding: 34px 0 55px !important;
    }

    #hero h1 {
        margin-bottom: 18px;
        font-size: clamp(27px, 8.5vw, 36px);
        line-height: 1.18;
    }

    #hero .hero-mensagem {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-image-container {
        margin: 27px auto 22px;
        padding: 7px;
    }

    #hero .btn-vsl,
    #oferta .btn-checkout,
    #faq .btn-faq {
        width: 100%;
        max-width: 100%;
        min-height: 58px;
        padding: 15px 17px;
        font-size: 15px;
    }


    .carousel {
        gap: 14px;
        padding: 14px 18px 22px;
    }

    .carousel-item {
        flex: 0 0 min(82vw, 280px);
    }

    .carousel-item img,
    .carousel-item video {
        width: 100%;
        height: auto;
        aspect-ratio: 280 / 550;
        object-fit: cover;
    }

    #oferta .oferta-card {
        width: 100%;
        padding: 42px 20px 38px;
    }

    #oferta .preco-box {
        width: 100%;
        padding: 23px 15px;
    }

    #oferta .preco-box .por {
        font-size: clamp(32px, 10vw, 39px);
    }

    #garantia .garantia-card {
        width: 100%;
    }

    #faq .faq-cta {
        width: 100%;
    }

    .faq-pergunta {
        gap: 14px;
        padding: 18px 15px;
    }
}

/* Celulares estreitos */
@media (max-width: 480px) {
    .container {
        padding-inline: 16px;
    }

    section {
        padding-block: 48px;
    }

    #hero {
        padding: 28px 0 48px !important;
    }

    #hero h1 {
        font-size: clamp(25px, 8.8vw, 31px);
    }

    .hero-image-container {
        margin-top: 23px;
    }

    #provas .stats > div,
    #o-que-recebe .item {
        padding: 28px 18px;
    }


    #depoimentos h2 {
        padding-inline: 16px;
    }

    .carousel {
        padding-inline: 16px;
    }

    .carousel-item {
        flex-basis: min(84vw, 270px);
    }

    #oferta .oferta-card {
        padding-inline: 16px;
    }

    #oferta .oferta-card h2 {
        font-size: 25px;
    }

    #garantia .garantia-card {
        padding: 26px 20px;
    }

    #faq .faq-cta {
        padding: 25px 15px;
    }

    .faq-pergunta {
        font-size: 15px;
    }

    footer {
        padding: 30px 0;
    }
}

/* ========================================
   CARROSSEL MANUAL — O QUE VOCÊ RECEBE
======================================== */

#o-que-recebe .recebe-carousel {
    width: 100%;
    max-width: 100%;

    padding: 16px 4px 26px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;

    cursor: grab;

    /* Esconde a barra, mas mantém a rolagem */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#o-que-recebe .recebe-carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

#o-que-recebe .recebe-carousel:active {
    cursor: grabbing;
}

#o-que-recebe .recebe-track {
    display: flex;
    width: max-content;

    animation: none !important;
    transform: none !important;
}

#o-que-recebe .recebe-group {
    display: flex;
    align-items: stretch;
    gap: 26px;
}

#o-que-recebe .recebe-group .item {
    flex: 0 0 290px;
    width: 290px;
    min-height: 230px;

    scroll-snap-align: start;
}

/* Ajuste para celulares */
@media (max-width: 650px) {
    #o-que-recebe .recebe-carousel {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding: 12px 16px 24px;
    }

    #o-que-recebe .recebe-group {
        gap: 16px;
    }

    #o-que-recebe .recebe-group .item {
        flex: 0 0 min(82vw, 280px);
        width: min(82vw, 280px);
        min-height: 220px;
    }
}

/* ========================================
   TOPO COM AS MARCAS
======================================== */
.site-header {
    width: 100%;
    background-color: #0a2540;
    padding: 18px 0;
}

.site-header .header-logos {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-header .header-logo {
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.site-header .logo-eletromad {
    width: min(38vw, 330px);
    height: auto;
    max-height: 88px;
}

.site-header .logo-vida-tecnico {
    width: 112px;
    height: 112px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .site-header {
        padding: 13px 0;
    }

    .site-header .header-logos {
        gap: 18px;
    }

    .site-header .logo-eletromad {
        width: min(55vw, 260px);
        max-height: 66px;
    }

    .site-header .logo-vida-tecnico {
        width: 78px;
        height: 78px;
        border-radius: 10px;
    }
}

@media (max-width: 420px) {
    .site-header {
        padding: 10px 0;
    }

    .site-header .header-logos {
        padding-inline: 14px;
        gap: 12px;
    }

    .site-header .logo-eletromad {
        width: min(58vw, 210px);
        max-height: 56px;
    }

    .site-header .logo-vida-tecnico {
        width: 62px;
        height: 62px;
        border-radius: 8px;
    }
}


/* ========================================
   AJUSTE FINAL — TOPO MAIS COMPACTO
======================================== */
.site-header {
    padding: 10px 0;
}

.site-header .header-logos {
    max-width: 1100px;
    gap: 20px;
}

.site-header .logo-eletromad {
    width: min(28vw, 230px);
    max-height: 58px;
}

.site-header .logo-vida-tecnico {
    width: 72px;
    height: 72px;
    border-radius: 9px;
}

@media (max-width: 768px) {
    .site-header {
        padding: 8px 0;
    }

    .site-header .header-logos {
        gap: 14px;
    }

    .site-header .logo-eletromad {
        width: min(48vw, 190px);
        max-height: 50px;
    }

    .site-header .logo-vida-tecnico {
        width: 56px;
        height: 56px;
        border-radius: 8px;
    }
}

@media (max-width: 420px) {
    .site-header {
        padding: 7px 0;
    }

    .site-header .header-logos {
        padding-inline: 14px;
        gap: 10px;
    }

    .site-header .logo-eletromad {
        width: min(52vw, 150px);
        max-height: 42px;
    }

    .site-header .logo-vida-tecnico {
        width: 46px;
        height: 46px;
        border-radius: 7px;
    }
}


/* ========================================
   AJUSTE FINAL — LOGO ELETROMAD MENOR
======================================== */
.site-header .logo-eletromad {
    width: min(22vw, 170px);
    max-height: 44px;
}

@media (max-width: 768px) {
    .site-header .logo-eletromad {
        width: min(42vw, 140px);
        max-height: 38px;
    }
}

@media (max-width: 420px) {
    .site-header .logo-eletromad {
        width: min(45vw, 110px);
        max-height: 32px;
    }
}



/* ========================================
   DÚVIDAS FREQUENTES EM VÍDEO
======================================== */
#faq {
    width: 100%;
    max-width: 100%;
    padding: 70px 0;
    overflow: hidden;
    background-color: #ffffff;
}

#faq h2 {
    margin-bottom: 10px;
}

#faq .faq-video-intro {
    margin: 0 auto 28px;
    color: #4b5563;
    font-size: 16px;
    text-align: center;
}

#faq .faq-video-carousel {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 12px max(20px, calc((100vw - 1000px) / 2 + 20px)) 24px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;

    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#faq .faq-video-carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

#faq .faq-video-carousel:active {
    cursor: grabbing;
}

#faq .faq-video-carousel:focus-visible {
    outline: 3px solid rgba(10, 37, 64, 0.22);
    outline-offset: -3px;
}

#faq .faq-video-item {
    position: relative;
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
    border-radius: 15px;
    overflow: hidden;
    background-color: #000000;
    box-shadow:
        0 12px 28px rgba(10, 37, 64, 0.16),
        0 4px 10px rgba(10, 37, 64, 0.08);
}

#faq .faq-video-item video {
    display: block;
    width: 280px;
    height: 550px;
    object-fit: cover;
    background-color: #000000;
}

#faq .video-botoes {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;

    display: flex;
    justify-content: center;
    gap: 8px;

    pointer-events: none;
}

#faq .video-controle {
    min-height: 38px;
    padding: 8px 12px;

    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;

    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

#faq .video-controle:hover {
    background-color: rgba(10, 37, 64, 0.92);
    transform: translateY(-2px);
}

#faq .video-controle:active {
    transform: translateY(0);
}

#faq .video-controle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    #faq {
        padding: 55px 0;
    }

    #faq .faq-video-intro {
        padding-inline: 18px;
        margin-bottom: 22px;
        font-size: 15px;
    }

    #faq .faq-video-carousel {
        gap: 14px;
        padding: 10px 18px 22px;
    }

    #faq .faq-video-item {
        flex-basis: min(82vw, 280px);
        width: min(82vw, 280px);
    }

    #faq .faq-video-item video {
        width: 100%;
        height: auto;
        aspect-ratio: 280 / 550;
    }
}

@media (max-width: 420px) {
    #faq .faq-video-carousel {
        padding-inline: 16px;
    }

    #faq .faq-video-item {
        flex-basis: min(84vw, 270px);
        width: min(84vw, 270px);
    }

    #faq .video-controle {
        padding: 8px 10px;
        font-size: 12px;
    }
}



/* ========================================
   CORREÇÃO FINAL — CARREGAMENTO DOS VÍDEOS
======================================== */
#faq .faq-video-item {
    isolation: isolate;
    background:
        linear-gradient(145deg, #0a2540, #071727);
}

/* Mensagem enquanto o primeiro quadro do vídeo ainda não foi renderizado. */
#faq .faq-video-item::before {
    content: "Carregando vídeo...";
    position: absolute;
    inset: 0;
    z-index: 0;

    display: grid;
    place-items: center;

    padding: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* O vídeo só aparece depois que o navegador renderiza um quadro real. */
#faq .faq-video-item video {
    position: relative;
    z-index: 1;

    opacity: 0;
    visibility: hidden;
    background-color: transparent;

    transition: opacity 0.25s ease;
}

/* Estado carregado corretamente. */
#faq .faq-video-item.video-pronto video {
    opacity: 1;
    visibility: visible;
}

#faq .faq-video-item.video-pronto::before {
    content: "";
}

/* Estado de erro: arquivo ausente ou formato de vídeo incompatível. */
#faq .faq-video-item.video-erro::before {
    content:
        "Não foi possível mostrar a imagem deste vídeo. "
        "Use MP4 com vídeo H.264 e áudio AAC.";
    z-index: 2;
    background: #0a2540;
}

#faq .faq-video-item.video-erro video {
    opacity: 0;
    visibility: hidden;
}

/* Os controles ficam acima do vídeo e são liberados quando ele estiver pronto. */
#faq .video-botoes {
    z-index: 3;
    opacity: 0.45;
    transition: opacity 0.2s ease;
}

#faq .faq-video-item.video-pronto .video-botoes {
    opacity: 1;
}

#faq .faq-video-item:not(.video-pronto) .video-controle {
    pointer-events: none;
}

@media (max-width: 768px) {
    #faq .faq-video-item::before {
        font-size: 13px;
    }
}



/* ========================================
   BOTÃO FINAL — VOLTAR AO CHECKOUT
======================================== */
html {
    scroll-behavior: smooth;
}

#faq .faq-checkout-voltar {
    max-width: 740px;
    margin: 42px auto 0;
    padding-inline: 20px;
    text-align: center;
}

#faq .btn-voltar-checkout {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 500px;
    min-height: 66px;
    padding: 18px 28px;

    background-color: #0a2540;
    color: #ffffff;

    border: 2px solid #0a2540;
    border-radius: 10px;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-decoration: none;
    text-align: center;

    box-shadow:
        0 14px 30px rgba(10, 37, 64, 0.25),
        0 5px 12px rgba(10, 37, 64, 0.12);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

#faq .btn-voltar-checkout::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

#faq .btn-voltar-checkout:hover {
    background-color: #123b61;
    border-color: #123b61;
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 20px 38px rgba(10, 37, 64, 0.3),
        0 8px 16px rgba(10, 37, 64, 0.14);
}

#faq .btn-voltar-checkout:hover::before {
    left: 150%;
}

#faq .btn-voltar-checkout:active {
    transform: translateY(-1px);
}

#faq .btn-voltar-checkout:focus-visible {
    outline: 4px solid rgba(10, 37, 64, 0.25);
    outline-offset: 4px;
}

@media (max-width: 600px) {
    #faq .faq-checkout-voltar {
        margin-top: 32px;
        padding-inline: 16px;
    }

    #faq .btn-voltar-checkout {
        max-width: 100%;
        min-height: 58px;
        padding: 15px 18px;
        font-size: 15px;
    }
}

/* ========================================
   DEPOIMENTO EM VÍDEO — AUTOPLAY
======================================== */
#depoimentos .carousel-item .botao-som {
    position: absolute;
    right: 10px;
    bottom: 10px;

    min-height: 38px;
    padding: 8px 12px;

    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;

    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(5px);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

#depoimentos .carousel-item .botao-som:hover {
    background-color: rgba(10, 37, 64, 0.92);
    transform: translateY(-2px);
}

@media (max-width: 420px) {
    #depoimentos .carousel-item .botao-som {
        padding: 8px 10px;
        font-size: 12px;
    }
}



/* ========================================
   AJUSTE FINAL — GARANTIA MAIS HARMÔNICA NO CELULAR
======================================== */
@media (max-width: 560px) {
    #garantia {
        padding: 28px 0 34px;
    }

    #garantia .container {
        padding-inline: 16px;
    }

    #garantia .garantia-card {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        align-items: start;
        column-gap: 15px;
        row-gap: 0;

        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 24px 20px;

        background:
            linear-gradient(
                145deg,
                #ffffff 0%,
                #f8fafc 100%
            );

        border: 1px solid rgba(10, 37, 64, 0.10);
        border-radius: 18px;

        text-align: left;

        box-shadow:
            0 12px 28px rgba(10, 37, 64, 0.10),
            0 3px 9px rgba(10, 37, 64, 0.05);
    }

    /* Linha superior menor e mais discreta */
    #garantia .garantia-card::before {
        top: 0;
        right: 34px;
        bottom: auto;
        left: 34px;

        width: auto;
        height: 4px;

        border-radius: 0 0 6px 6px;
    }

    #garantia .garantia-icone {
        grid-column: 1;
        grid-row: 1;

        width: 52px;
        height: 52px;
        flex-basis: auto;

        margin: 2px 0 0;

        background-color: rgba(10, 37, 64, 0.075);
        border: 1px solid rgba(10, 37, 64, 0.07);
    }

    #garantia .garantia-icone svg {
        width: 27px;
        height: 27px;
    }

    #garantia .garantia-conteudo {
        grid-column: 2;
        min-width: 0;
    }

    #garantia .garantia-conteudo span {
        margin: 0 0 6px;

        font-size: 10px;
        line-height: 1.3;
        letter-spacing: 1.15px;
    }

    #garantia .garantia-conteudo h3 {
        margin: 0 0 9px;

        font-size: clamp(18px, 5.7vw, 21px);
        line-height: 1.28;
    }

    #garantia .garantia-conteudo p {
        margin: 0;

        color: #53606d;
        font-size: 14px;
        line-height: 1.58;
    }
}

@media (max-width: 360px) {
    #garantia .container {
        padding-inline: 13px;
    }

    #garantia .garantia-card {
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 12px;

        padding: 22px 16px;
        border-radius: 16px;
    }

    #garantia .garantia-icone {
        width: 46px;
        height: 46px;
    }

    #garantia .garantia-icone svg {
        width: 24px;
        height: 24px;
    }

    #garantia .garantia-conteudo h3 {
        font-size: 18px;
    }

    #garantia .garantia-conteudo p {
        font-size: 13px;
    }
}



/* ========================================
   TEXTO DE APRESENTAÇÃO DOS FUNDADORES
======================================== */
#hero .hero-fundadores {
    max-width: 850px;
    margin: 0 auto 30px;

    color: #4b5563;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 768px) {
    #hero .hero-fundadores {
        max-width: 680px;
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 420px) {
    #hero .hero-fundadores {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.55;
    }
}



/* ========================================
   TÍTULO PRINCIPAL — MAIS AMPLO E PROPORCIONAL
======================================== */
#hero .container {
    max-width: 1180px;
}

#hero .hero-titulo-principal {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto 26px;

    color: #0a2540;
    text-align: center;
    letter-spacing: -0.035em;
}

#hero .hero-titulo-linha {
    display: block;
    width: 100%;
}

#hero .hero-titulo-linha-1 {
    font-size: clamp(34px, 4.15vw, 58px);
    font-weight: 850;
    line-height: 1.08;
}

#hero .hero-titulo-linha-2 {
    margin-top: 8px;

    font-size: clamp(31px, 3.7vw, 52px);
    font-weight: 800;
    line-height: 1.1;
}

@media (max-width: 900px) {
    #hero .hero-titulo-principal {
        max-width: 760px;
        margin-bottom: 23px;
        padding-inline: 4px;
        letter-spacing: -0.025em;
    }

    #hero .hero-titulo-linha-1 {
        font-size: clamp(31px, 6vw, 45px);
    }

    #hero .hero-titulo-linha-2 {
        margin-top: 7px;
        font-size: clamp(28px, 5.45vw, 41px);
    }
}

@media (max-width: 600px) {
    #hero .container {
        padding-inline: 14px;
    }

    #hero .hero-titulo-principal {
        max-width: 100%;
        margin-bottom: 21px;
        padding: 0;
        letter-spacing: -0.02em;
    }

    #hero .hero-titulo-linha-1 {
        font-size: clamp(29px, 9vw, 38px);
        line-height: 1.09;
    }

    #hero .hero-titulo-linha-2 {
        margin-top: 8px;
        font-size: clamp(27px, 8.2vw, 35px);
        line-height: 1.12;
    }
}

@media (max-width: 360px) {
    #hero .hero-titulo-linha-1 {
        font-size: 27px;
    }

    #hero .hero-titulo-linha-2 {
        font-size: 25px;
    }
}



/* ========================================
   AJUSTE FINAL — TEXTO DOS FUNDADORES À ESQUERDA
======================================== */
#hero .hero-fundadores {
    text-align: left;
}

