/* === Variáveis CSS (Customize aqui!) === */
:root {
    /* --primary-color: #0056b3; */
    /* Original Azul forte */
    /* --secondary-color: #007bff; */
    /* Original Azul mais claro */
    --primary-color: #800020;
    /* Vinho Bordô Principal (Burgundy) */
    --secondary-color: #A02040;
    /* Vinho Bordô Secundário/Hover (Lighter Burgundy/Wine) */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #5a6268;
    --success-color: #28a745;
    /* Mantido verde para sucesso, pode ajustar se preferir */
    --white-color: #ffffff;
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --base-font-size: 16px;
    --transition-speed: 0.3s;
    --section-padding: 60px 0;
}

/* === Reset Básico e Estilos Globais === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Rolagem suave nativa */
    font-size: 100%;
    /* Garante que rem funcione bem */
}

body {
    font-family: var(--body-font);
    font-size: var(--base-font-size);
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    /* Evita scroll horizontal */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    padding-left: 0;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light p,
.text-light li,
.text-light label {
    color: var(--light-color);
}

.text-light a {
    color: var(--white-color);
}

.text-light a:hover {
    color: var(--secondary-color);
}

.text-light .section-title p {
    color: rgba(255, 255, 255, 0.8);
}


/* === Botões === */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    /* box-shadow: 0 4px 10px rgba(0, 86, 179, 0.4); */
    /* Original Blue Shadow */
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.4);
    /* Burgundy Shadow */
}

.btn-secondary {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* === Header e Navegação === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color var(--transition-speed) ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    /* Isso coloca a logo e o texto lado a lado */
    align-items: center;
    /* Isso alinha os dois no meio (altura) */
    gap: 8px;
}

.logo span {
    vertical-align: middle;
}

.logo img {
    height: 40px;
    vertical-align: middle;
}

/* Estilo se usar imagem */

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 18px;
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    /* Classe active pode ser adicionada via JS */
    width: 100%;
}

.menu-toggle {
    display: none;
    /* Escondido por padrão */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Link do Sistema no Menu */
.nav-system a {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-color);
    color: var(--white-color) !important;
    padding: 8px 12px !important;
    border-radius: 8px;
}

.nav-system a:hover {
    background: var(--secondary-color);
}

.nav-system a::after {
    display: none !important;
}

/* Desktop: só ícone */
.nav-system-text {
    display: none;
}

/* Mobile: ícone + texto */
@media (max-width: 992px) {
    .nav-system-text {
        display: inline;
    }

    .nav-system a {
        justify-content: center;
        width: 100%;
    }
}

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 100vh;
    /* Altura total da tela */
    min-height: 600px;
    background: url('avaliaodeimoveis.webp') no-repeat center center/cover;
    /* Substitua pela sua imagem */
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 40, 85, 0.6); */
    /* Original Blue Overlay */
    background-color: rgba(80, 0, 20, 0.6);
    /* Dark Burgundy Overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* === Section Title === */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === About Section === */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text ul {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.about-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text li i {
    color: var(--success-color);
    /* Mantido verde para checkmarks */
    margin-right: 10px;
    font-size: 1.2em;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15); */
    /* Original Blue Shadow */
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
    /* Burgundy Shadow */
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* === Process Section === */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    /* Para telas menores */
}

.step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    /* Ajuste conforme necessário */
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    position: relative;
    /* box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3); */
    /* Original Blue Shadow */
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
    /* Burgundy Shadow */
}

.step-icon {
    font-size: 2rem;
    color: var(--white-color);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border: 2px solid var(--white-color);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 30px;
    /* Alinha verticalmente com os ícones */
    display: none;
    /* Esconder por padrão */
}

/* Mostrar setas em telas maiores */
@media (min-width: 992px) {
    .step-arrow {
        display: block;
    }

    .process-steps {
        flex-wrap: nowrap;
        /* Evita quebra de linha */
    }
}


/* === Importance Section === */
.importance-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.importance-text {
    flex: 1;
}

.importance-image {
    flex: 1;
    text-align: center;
}

.importance-image img {
    border-radius: 10px;
}

.importance-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.importance-text ul {
    margin-top: 1.5rem;
}

.importance-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    /* Para alinhar ícone com texto de múltiplas linhas */
}

.importance-text li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
    /* Pequeno ajuste vertical */
    font-size: 1.1em;
    width: 20px;
    /* Largura fixa para alinhamento */
    text-align: center;
}

.importance-text li strong {
    color: var(--dark-color);
}

/* === Testimonials Section === */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* Se quiser um slider de verdade, precisará de JS e CSS adicional */
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    /* Para aspas */
}

.testimonial-card::before {
    /* Aspas decorativas */
    content: '\f10d';
    /* Ícone de aspas do Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-left: 10px;
    /* Espaço para aspas */
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    /* Garante que a imagem cubra o espaço */
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* === Contact Section === */
.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-wrapper {
    flex: 1.5;
}

/* Formulário ocupa mais espaço */
.contact-info {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--white-color);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--body-font);
    background-color: var(--white-color);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: 0;
    /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); */
    /* Original Blue Shadow */
    box-shadow: 0 0 0 0.2rem rgba(160, 32, 64, 0.25);
    /* Burgundy Secondary Shadow */
}

.form-group textarea {
    resize: vertical;
    /* Permite redimensionar apenas verticalmente */
}

#form-status {
    /* Estilo para a mensagem de status do formulário */
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.5em;
    /* Para evitar pulos de layout */
    /* Cores são definidas via JS */
}

.contact-info h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.contact-info ul {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    font-size: 1.3rem;
    margin-right: 15px;
    color: var(--secondary-color);
    /* Usando cor secundária para ícones de contato */
    width: 25px;
    /* Alinhamento */
    text-align: center;
}

.contact-info h4 {
    color: var(--white-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* === Footer === */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Para telas menores */
}

.footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* === Animações de Scroll === */
/* Classe inicial para elementos escondidos */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Classe adicionada via JS quando o elemento está visível */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay nas animações (para efeito escalonado) */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}


/* === Responsividade === */

/* Tablets e Desktops menores */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: relative;
    }

    /* Para posicionar o botão */

    .nav-list {
        position: absolute;
        top: 70px;
        /* Altura do header */
        right: 0;
        width: 250px;
        background-color: var(--white-color);
        box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 15px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease, transform var(--transition-speed) ease;
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        display: block;
        padding: 10px 20px;
        width: 100%;
    }

    .nav-list a::after {
        display: none;
    }

    /* Remove sublinhado no mobile */
    .nav-list a:hover {
        background-color: var(--light-color);
        color: var(--primary-color);
    }

    /* Adapta hover no mobile */


    .menu-toggle {
        display: block;
        /* Mostra o botão hamburger */
    }

    .about-content,
    .importance-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .importance-image {
        margin-top: 30px;
        order: -1;
        /* Coloca imagem acima do texto */
    }

    .about-text ul,
    .importance-text ul {
        text-align: left;
        /* Alinha itens da lista à esquerda */
        display: inline-block;
        /* Para centralizar o bloco da lista */
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-arrow {
        display: block;
        /* Mostrar setas */
        transform: rotate(90deg);
        /* Girar setas para baixo */
        margin: -10px 0;
        /* Ajustar espaçamento */
    }

    .process-steps .step:last-child .step-arrow {
        display: none;
        /* Não mostrar seta após último passo */
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        margin-top: 40px;
        text-align: center;
    }

    .contact-info ul {
        text-align: left;
        display: inline-block;
    }

}

/* Celulares */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        /* Uma coluna */
    }

    .footer .container {
        flex-direction: column;
        gap: 15px;
    }

    .social-links a {
        margin: 0 8px;
    }
}

.hero-clean {
    background-color: var(--light-color);
    padding: 120px 0 80px 0;
    /* Padding top aumentado para compensar header fixo */
    min-height: auto;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 400px;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.hero-form {
    flex: 1 1 350px;
    max-width: 420px;
}

.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 0.95rem;
}

.form-box button {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

/* === Responsividade Hero - Tablets === */
@media (max-width: 991.98px) {
    .hero-clean {
        padding: 100px 0 60px 0;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-text {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-form {
        flex: 1 1 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* === Responsividade Hero - Mobile === */
@media (max-width: 767.98px) {
    .hero-clean {
        padding: 85px 0 20px 0;
        background: linear-gradient(rgba(128, 0, 32, 0.4), rgba(92, 0, 23, 0.5)),
            url('euu.webp') no-repeat center top/cover;
        position: relative;
    }

    .hero-grid {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text {
        text-align: center;
    }

    /* Ajustar cores do texto para contraste com fundo escuro */
    .hero-text h1 {
        font-size: 1.6rem;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle,
    .hero-subtitle .text-accent {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .hero-description,
    .hero-description .text-accent {
        color: rgba(255, 255, 255, 0.9) !important;
        display: block;
    }

    /* Features com fundo semitransparente */
    .hero-feature {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

.step-icon-wrapper {
    background-color: var(--primary-color);
    /* já existe */
    font-size: 1.3rem;
}

.step-number {
    font-weight: bold;
    font-size: 1.1rem;
}


.importance-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.importance-box,
.importance-text {
    flex: 1;
    min-width: 300px;
}

.importance-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.importance-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.importance-benefits {
    margin-top: 1.5rem;
}

.importance-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.importance-benefits li i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.importance-benefits li strong {
    color: var(--dark-color);
    margin-right: 5px;
}

.form-privacy i {
    margin-right: 5px;
}

/* Mensagem de status do formulário */
.form-status-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.form-status-message:empty {
    display: none;
}

/* === Seção do Livro === */
.book-section {
    background-color: var(--light-color);
}

.book-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.book-cover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 280px;
    height: 380px;
    border-radius: 8px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2), -5px -5px 20px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.book-cover i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
}

.book-cover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
    border-radius: 8px 0 0 8px;
}

/* Imagem real da capa do livro */
.book-cover-img {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.25), -5px -5px 20px rgba(255, 255, 255, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover-img:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.3);
}

.book-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF9900;
    color: #232F3E;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.book-badge i {
    font-size: 1.1rem;
}

.book-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.book-text p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.book-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.book-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.book-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.btn-amazon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF9900;
    color: #232F3E;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-amazon:hover {
    background-color: #E88B00;
    color: #232F3E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btn-amazon i {
    font-size: 1.2rem;
}

@media (max-width: 991.98px) {
    .book-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-image {
        display: flex;
        justify-content: center;
    }

    .book-cover {
        width: 220px;
        height: 300px;
        transform: none;
    }

    .book-cover i {
        font-size: 4rem;
    }

    .book-cover-img {
        max-width: 200px;
        transform: none;
    }

    .book-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 25px auto;
    }
}

@media (max-width: 767.98px) {
    .book-cover {
        width: 180px;
        height: 250px;
    }

    .book-cover i {
        font-size: 3rem;
    }

    .book-text h3 {
        font-size: 1.3rem;
    }

    .book-text p {
        font-size: 0.9rem;
    }

    .book-features li {
        font-size: 0.85rem;
    }

    .btn-amazon {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .importance-grid {
        flex-direction: column;
    }

    .importance-text {
        text-align: center;
    }

    .importance-benefits {
        text-align: left;
        display: inline-block;
    }
}

/* Removido CSS duplicado - estilos .whatsapp-float estão nas linhas 1817+ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray-color);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* === Acessibilidade - Screen Reader Only === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === Hero Section Melhorada === */

/* Hero centralizado (sem formulário) */
.hero-centered {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-centered .hero-text {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-centered .hero-features {
    justify-content: center;
}

.hero-centered .hero-cta {
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--light-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-feature i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: var(--white-color);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #c5a028);
    border: none;
    color: white;
    font-weight: 700;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #c5a028, #b89120);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold i {
    font-size: 1rem;
}

/* === Form Box Melhorado === */
.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header i {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.form-header h3 {
    margin-bottom: 5px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--primary-color);
    background-color: var(--white-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.1);
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: var(--success-color);
}

#hero-form-status {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    min-height: 1.5em;
}

/* === Testimonial Ratings === */
.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 2px;
}

/* === Footer Melhorado === */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-cnpj {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-top: 5px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
    width: 16px;
}

.footer-social .social-links {
    display: flex;
    gap: 15px;
}

.footer-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* === WhatsApp Float Melhorado com Tooltip === */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #fff;
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* === Responsive Adjustments === */
@media (max-width: 991.98px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    /* Footer 2x2 para tablets */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: left;
    }

    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-social h4::after {
        left: 0;
        transform: none;
    }

    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-social .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {

    /* Prevenir overflow horizontal */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
    }

    /* Reduzir espaçamento das seções */
    .section-padding {
        padding: 30px 0;
    }

    .hero-grid {
        gap: 15px;
    }

    /* Hero centralizado - ajustes mobile */
    .hero-centered .hero-text {
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    /* Esconder descrição longa no mobile */
    .hero-description {
        display: none;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .hero-features {
        gap: 6px;
        margin-bottom: 1rem;
    }

    .hero-feature {
        font-size: 0.7rem;
        padding: 5px 8px;
        gap: 4px;
    }

    .hero-feature i {
        font-size: 0.75rem;
    }

    /* Botões CTA visíveis no mobile (sem formulário) */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Form Box Mobile */
    .form-box {
        padding: 18px 15px;
    }

    .form-header {
        margin-bottom: 15px;
    }

    .form-header i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .form-header h3 {
        font-size: 1rem;
    }

    .form-header p {
        font-size: 0.75rem;
    }

    .form-field {
        margin-bottom: 10px;
    }

    .form-field input,
    .form-field select {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .btn-gold {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .form-privacy {
        font-size: 0.65rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    /* Section titles mobile */
    .section-title {
        margin-bottom: 25px;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    /* Cards mobile - mais compactos */
    .services-grid,
    .benefits-grid {
        gap: 15px;
    }

    .service-card,
    .benefit-card {
        padding: 20px 15px;
    }

    .service-icon,
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .service-card h3,
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card p,
    .benefit-card p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    /* Process steps mobile */
    .process-steps {
        gap: 20px;
    }

    .step {
        max-width: 100%;
    }

    .step-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .step-icon {
        font-size: 1.3rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .step h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .step p {
        font-size: 0.8rem;
    }

    /* About section mobile */
    .about-content {
        gap: 25px;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .about-text ul {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-text li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .about-image img {
        max-width: 250px;
        margin: 0 auto;
    }

    /* Testimonials mobile */
    .testimonials-slider {
        gap: 15px;
    }

    .testimonial-card {
        padding: 18px 15px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    .testimonial-rating i {
        font-size: 0.85rem;
    }

    /* Contact section mobile */
    .contact-content {
        gap: 25px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    /* Footer mobile */
    .footer {
        padding: 25px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social .social-links {
        justify-content: center;
    }

    .footer-logo {
        height: 40px;
        margin: 0 auto 12px auto;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* WhatsApp button mobile */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 15px;
        right: 12px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* CTA buttons */
    .cta-center {
        margin-top: 30px;
    }

    .cta-center .btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-feature {
        font-size: 0.65rem;
        padding: 4px 6px;
    }

    .form-box {
        padding: 15px 12px;
    }

    .btn-gold {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .section-title h2 {
        font-size: 1.2rem;
    }

    .service-card,
    .benefit-card {
        padding: 15px 12px;
    }
}

/* ===================================================== */
/* ========== NOVAS FUNCIONALIDADES ADICIONADAS ======== */
/* ===================================================== */

/* === Skip Link === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* === Focus Visible para Acessibilidade === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(128, 0, 32, 0.2);
}

.nav-list a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* === Seção FAQ === */
.faq-section {
    background-color: var(--light-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(128, 0, 32, 0.03);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

/* === Sticky CTA Mobile === */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    padding: 12px 15px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-mobile.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
    color: var(--white-color);
}

@media (max-width: 767.98px) {
    .sticky-cta-mobile {
        display: block;
    }

    /* Ajustar padding do footer para não sobrepor sticky CTA */
    .footer {
        padding-bottom: 80px;
    }

    /* Mover botão WhatsApp para cima do sticky CTA */
    .whatsapp-float {
        bottom: 80px;
    }
}

/* === Micro-animações === */
/* Shake animation para erros */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.6s ease-in-out;
}

/* Bounce animation para ícones */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.service-icon:hover,
.benefit-icon:hover {
    animation: bounce 0.6s ease;
}

/* Pulse suave para CTAs */
@keyframes pulse-cta {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(128, 0, 32, 0.5);
    }
}

.btn-primary:hover {
    animation: pulse-cta 1.5s ease-in-out infinite;
}

/* Counter animation effect */
.counter-animate {
    animation: counter-pop 0.4s ease-out;
}

@keyframes counter-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gradient shift animation para badges */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-badge {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* === Contador de Estatísticas - Prova Social === */
.stats-counter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white-color);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: inline;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* === Pop-up de Saída === */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-popup {
    background: var(--white-color);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--primary-color);
}

.exit-popup-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.exit-popup h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.exit-popup p {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.exit-popup-offer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.exit-popup-offer strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

.exit-popup .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
}

.exit-popup-skip {
    margin-top: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.exit-popup-skip:hover {
    color: var(--dark-color);
}

/* Botões do Pop-up de Saída */
.exit-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exit-popup-buttons .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    margin-bottom: 0;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: var(--white-color) !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* === Indicador Online no WhatsApp === */
.whatsapp-online {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background-color: #00FF00;
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: online-pulse 2s infinite;
}

@keyframes online-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 255, 0, 0);
    }
}

/* === Calculadora de Orçamentos === */
.calculator-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.calculator-section .section-title h2,
.calculator-section .section-title p {
    color: var(--white-color);
}

.calculator-section .section-title h2::after {
    background-color: #FFD700;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-form {
    background: var(--white-color);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.calculator-form .form-section {
    margin-bottom: 25px;
}

.calculator-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.value-display {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    margin-bottom: 15px;
}

.value-display span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Slider personalizado */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white-color);
    border: 4px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white-color);
    border: 4px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calculator-form select {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--body-font);
    background-color: var(--white-color);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23800020' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.calculator-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.15);
}

/* Checkbox de urgência */
.urgency-section {
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffc107;
}

.urgency-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0 !important;
}

.urgency-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.urgency-label .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #ffc107;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.urgency-label:hover .checkmark {
    background-color: #fffde7;
}

.urgency-label input:checked~.checkmark {
    background-color: #ffc107;
    border-color: #ffc107;
}

.urgency-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.urgency-label input:checked~.checkmark:after {
    display: block;
}

.urgency-label .label-text {
    font-weight: 600;
    color: #ff8f00;
}

.urgency-label .label-text i {
    margin-right: 5px;
}

/* Resultado da calculadora */
.calculator-result {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 100px;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.result-header i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.result-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    animation: pulse-result 0.5s ease;
}

.result-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.result-value #resultado-valor,
.result-value .resultado-valor-sync {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.result-value .cents,
.result-value .resultado-centavos-sync {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

@keyframes pulse-result {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.result-note {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.5;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-actions .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
}

/* Responsividade */

/* Desktop: esconde versão mobile */
.calculator-result-mobile,
.result-actions-mobile {
    display: none;
}

/* Desktop: mostra versão desktop */
.calculator-result-desktop {
    display: block;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .calculator-form {
        display: flex;
        flex-direction: column;
    }

    /* Mobile: esconde versão desktop */
    .calculator-result-desktop {
        display: none !important;
    }

    /* Mobile: mostra versão mobile */
    .calculator-result-mobile,
    .result-actions-mobile {
        display: block;
    }

    /* Estilos para resultado mobile */
    .calculator-result-mobile {
        background: var(--white-color);
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* Reordenação para mobile */
    .calc-order-1 {
        order: 1;
    }

    .calc-order-2 {
        order: 2;
    }

    .calc-order-3 {
        order: 3;
    }

    .calc-order-4 {
        order: 4;
    }

    .calc-order-5 {
        order: 5;
    }

    .result-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .result-actions-mobile .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .calculator-form,
    .calculator-result {
        padding: 25px;
    }

    .value-display span {
        font-size: 1.5rem;
    }

    .result-value #resultado-valor {
        font-size: 3rem;
    }
}