/* ===================================
   FONT IMPORTS & ROOT VARIABLES
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --gold-color: #f6e2a1;
    --background-color: #000000;
    --text-color: #FFFFFF;
    --card-bg: #1a1a1a;
    --text-secondary: #ccc;
    --border-dark: #333;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-color);
}

/* ===================================
   GLOBAL BACKGROUND EFFECTS
   =================================== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Coloca o efeito atrás de todo o conteúdo */
    overflow: hidden; /* Garante que os blurs não criem barras de rolagem */
}

.background-effects::before,
.background-effects::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(150px); /* Aumenta o blur para um efeito mais suave */
    opacity: 0.2;
    background: var(--gold-color);
}

.background-effects::before {
    top: -20%; left: -20%; width: 60vw; height: 60vw;
}

.background-effects::after {
    bottom: -20%; right: -20%; width: 50vw; height: 50vw;
}

/* ===================================
   UTILITY & COMPONENT CLASSES
   =================================== */
.section {
    background: var(--background-color);
    padding: 5rem 2rem;
}

.section-divider {
    border: 0;
    height: 1px;
    background: var(--gold-color);
    width: 100px;
    margin: 2rem auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-color); }



/* ===================================
   HEADER STYLES
   =================================== */
.header {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Alinha o conteúdo ao centro */
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Aumenta o espaço entre o ícone e o texto */
}

.logo-icon {
    height: 30px; /* Aumenta um pouco o tamanho do ícone */
    width: auto; /* Mantém a proporção */
}

.logo-text {
    /* O logo original tinha cerca de 40px de altura, 60% disso é 24px */
    height: 24px; 
    width: auto;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto; /* Empurra os botões para a direita */
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #b7b08c;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
    background-color: var(--gold-color);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: #e6ded4;
    padding: 1.5rem 1rem 3rem; /* Diminui o padding superior para aproximar do header */
    position: relative; /* Necessário para os efeitos de blur */
}

.hero::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero::before {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(191, 184, 176, 0.1); /* Efeito sutil com o novo tom */
}

.hero::after {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(0, 0, 0, 0.05); /* Mantém o efeito sutil preto original */
}

/* Estilos para a seção Hero com fundo escuro */
.hero.hero-dark {
    background-color: #080705;
    background-image: url('../images/banner-desktop.png');
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff; /* Texto branco */
    height: 760px; /* Altura fixa de 760px */
    min-height: auto; /* Remove a altura mínima anterior */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* Adiciona um padding para evitar que o conteúdo toque as bordas */
}

/* .hero.hero-dark::before,
.hero.hero-dark::after {
    A sobreposição já escurece, então podemos usar uma cor mais vibrante para o efeito
    background: #f6e2a1; 
    filter: blur(100px);  Mais blur 
    opacity: 0.3;  Aumenta um pouco a opacidade do efeito 
} */

.hero-wrapper {
    max-width: 1280px; /* Largura máxima para o conteúdo */
    margin: 0 auto; /* Centraliza o wrapper */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinha o conteúdo para a direita */
    width: 100%;
}
.hero-image-mobile {
    width: 100%;
}
.hero-image-mobile img {
    width: 100%; display: block;
}

.animated-title {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem; /* Aumenta o espaço abaixo do título */
    line-height: 1.2;
    color: #191a1e;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 50%; /* Ocupa metade do espaço, no lado direito */
    max-width: 640px; /* Ajusta a largura máxima para o novo layout */
}

.word-wrapper {
    position: relative;
    display: inline-block;
    width: 180px; /* Ajuste a largura conforme a maior palavra */
    text-align: left; /* Alinha a palavra animada à esquerda */
    height: 1.2em; /* Garante que o contêiner tenha altura para empurrar o formulário */
    color: #908b6e; /* Cor de destaque */
    vertical-align: bottom; /* Corrige o alinhamento vertical */
}

.word {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-100%); /* Faz a palavra vir de cima */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1 {
    font-size: 3.5rem; /* Tamanho base para desktop */
    font-weight: bold;
    margin-bottom: 1.5rem; 
    line-height: 1.2;
    color: var(--text-color);
}


.hero-text {
    width: 100%; /* Ocupa a largura total do hero-content */
    text-align: left; /* Alinha o texto à esquerda dentro do novo bloco */
}

.hero.hero-dark .hero-text h1,
.hero.hero-dark .hero-text p {
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Estilos para o formulário dentro da seção Hero escura */
.hero.hero-dark .form-card {
    background: transparent; /* Remove o fundo branco */
    color: #fff; /* Deixa o texto padrão branco */
    padding: 0; /* Remove o preenchimento do card */
    box-shadow: none; /* Remove a sombra */
    margin-top: 3rem; /* Adiciona espaço entre o texto e o formulário */
}

/* Garante que os labels do formulário sejam visíveis */
.hero.hero-dark .form-card .form-label {
    color: var(--text-color);
}

/* Grid para formulários */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0; /* Remove margem inferior do grid */
}

/* Adiciona borda aos inputs do formulário da hero para combinar com a repeat-cta */
.hero.hero-dark .form-input {
    background: rgba(0, 0, 0, 0.171); /* Fundo branco com 10% de opacidade */
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: var(--text-color);
}

/* Placeholder color for dark hero form */
.hero.hero-dark .form-input::placeholder {
    color: #ccc;
}

/* ===================================
   FORM STYLES
   =================================== */
.form-card {
    background: #000;
    color: var(--text-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem; /* Espaçamento padrão entre grupos de formulário */
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem; 
    background: var(--card-bg);
    color: var(--text-color);
}

.form-input:focus {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
}

.submit-btn {
    width: 100%; 
    background: #191a1e;
    color: #fff;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-cta-btn {
    background-color: var(--gold-color);
    color: #000;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
}

.cta-form-btn {
    background-color: var(--gold-color);
    color: #000;
}


/* Reduz a altura do botão de envio especificamente na seção hero */
.hero .submit-btn {
    padding: 1rem; /* Ajusta padding do botão na hero */
}

.submit-btn:hover:not(:disabled) {
    background: #191a1e;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(191, 184, 176, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 768px;
    margin: 0 auto;
}

.benefits-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Define 2 colunas de largura igual */
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 4.5rem 2rem 2.5rem; /* Aumenta o padding superior para dar espaço ao ícone */
    border-radius: 7rem;
    border-top: 4px solid var(--gold-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative; /* Necessário para posicionar o ícone */
    text-align: left; /* Alinha o conteúdo à esquerda */
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 100px; /* Ícone maior */
    height: 100px; /* Ícone maior */
    background: var(--gold-color);
    border-radius: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: absolute; /* Posicionamento absoluto */
    top: -50px; /* Metade da altura para sobrepor */
    left: 2rem; /* Alinha com o padding do card */
    transform: translateX(0); /* Remove a centralização horizontal */
}

.benefit-icon i {
    width: 48px;
    height: 48px;
    color: #000; /* Ícone preto */
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem; /* Mantém o espaçamento */
}

.benefit-card p {
    color: var(--text-secondary);
}

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */

.authority-badge {
    max-width: 1280px;
    margin: 0 auto 3rem;
    background: #b7b08c;
    color: #fff;
    padding: 2rem;
    border-radius: 7rem;
    text-align: center;
    box-shadow: 0 15px 15px rgba(0,0,0,0.3);
}

.authority-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.authority-badge-content i {
    color: #000000;
}


.authority-badge h3 {
    font-size: 2rem;
}

.authority-badge p {
    color: #000000;
    font-size: 1.125rem;
}

.testimonials-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.15;
    color: var(--gold-color);
}
.quote-icon svg {
    fill: currentColor; /* Garante que o SVG use a cor do pai */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid var(--gold-color);
    object-fit: cover;
}

.testimonial-info h4 {
    font-weight: bold;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-text {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    position: relative;
    background: var(--card-bg);
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: var(--gold-color);
    color: #000; /* Texto preto */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.step-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.step-card p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ===================================
   REPEAT CTA SECTION
   =================================== */

.repeat-cta-content {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.repeat-cta-title {
    text-align: center;
    margin-bottom: 3rem;
}

.repeat-cta-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.repeat-cta-title h2 i {
    color: var(--gold-color);
}


.repeat-cta-title p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.repeat-form-card {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.repeat-form-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.repeat-form-card .form-label {
    color: #fff; /* Labels brancos */
}

.repeat-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.repeat-form-card .form-input {
    border: 1px solid var(--border-dark);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s;
}

.faq-question:hover {
    color: #D4AF37; /* Cor dourada no hover */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    color: var(--text-secondary);
    padding-top: 0;
}

.faq-question .chevron {
    width: 20px;
    height: 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding-top: 1rem;
}

.chevron {
    transition: transform 0.3s;
}

.chevron.active {
    transform: rotate(180deg);
}

/* ===================================
   FOOTER
   =================================== */
.footer { 
    background: #000;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 48px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-section h3 {
    font-size: 1.25rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

.footer-link i {
    color: var(--gold-color);
    margin-top: 4px; /* Pequeno ajuste para alinhar melhor com o texto */
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #fff;
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    z-index: 2000;
    min-width: 300px;
}

.toast.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.toast-description {
    color: #666;
    font-size: 0.875rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1100px) { /* Ajustado para quebrar um pouco antes */
    /* Hero Section Mobile/Tablet */
    .hero.hero-dark {
        background-image: none; /* Remove a imagem de fundo do desktop */
        height: auto; /* Altura automática para se ajustar ao conteúdo */
        min-height: 0;
        display: block;
        padding: 0; /* Remove padding para a imagem ocupar 100% */
    }

    .hero.hero-dark .hero-wrapper {
        padding: 4rem 2rem; /* Adiciona padding ao conteúdo de texto */
        justify-content: center;
    }

    .hero.hero-dark .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero.hero-dark .hero-text {
        text-align: center;
    }

    .hero-wrapper {
        flex-direction: column; /* Empilha a imagem e o conteúdo */
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr; /* Uma coluna para os benefícios */
        gap: 5rem; /* Aumenta o espaço vertical entre os cards */
    }

    .hero-content,
    .hero-text {
        width: 100%; /* Ocupa a largura total */
        text-align: left; /* Alinha o texto à esquerda */
    }

    .animated-title {
        flex-direction: column; /* Empilha as partes do título */
        align-items: flex-start; /* Alinha as partes do título à esquerda */
        justify-content: flex-start; /* Garante alinhamento à esquerda para o flex container */
    }

    .word-wrapper {
        width: auto; /* Permite que a largura se ajuste ao conteúdo */
    }

    .hero-text h1 {
        font-size: 2.5rem; /* Tamanho para tablets e telas menores */
        text-align: center; /* Centraliza o título no mobile */
    }

    .phone-link {
        display: none;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .repeat-form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Adiciona espaço entre os campos no mobile */
    }

    .hero.hero-dark .form-card {
        margin-top: 3rem; /* Reduz pela metade o espaço acima do formulário */
    }

    /* Restaura a margem do form-group na hero em telas menores */
    .hero.hero-dark .form-group {
        margin-bottom: 1.5rem;
    }

    .hero .form-input {
        padding: 0.6rem 0.8rem; /* Reduz o padding dos inputs */
    }

    .hero .submit-btn {
        margin-top: 1rem; /* Adiciona espaço acima do botão */
        padding: 0.75rem; /* Reduz o padding do botão */
    }

    /* Adiciona margem superior ao botão do formulário de CTA em telas menores */
    .repeat-form-card .submit-btn {
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .logo {
        height: 26px;
    }

    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        gap: 0.25rem;
    }

    .whatsapp-btn i {
        width: 16px !important;
        height: 16px !important;
    }

    .hero-text h1 {
        font-size: 2rem; /* Tamanho para celulares */
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .repeat-cta-title h2 {
        font-size: 2rem;
        flex-direction: column;
    }
}

/* Esconde a imagem de mobile em telas maiores */
@media (min-width: 1101px) {
    .hero-image-mobile {
        display: none;
    }
}

.scroll-down-widget {
    display: none; /* Oculto por padrão */
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-color);
    animation: bounce 2s infinite;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px; /* Cantos totalmente arredondados */
    background-color: rgba(0, 0, 0, 0.4); /* Fundo de botão semi-transparente */
    backdrop-filter: blur(4px); /* Efeito de vidro fosco para navegadores modernos */
    font-size: 0.8rem;
}

.scroll-down-widget.hidden {
    opacity: 0;
    visibility: hidden;
    animation: none; /* Para a animação quando oculto */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -20px);
    }
    60% {
        transform: translate(-50%, -10px);
    }
}

/* Exibe o indicador quando o layout mobile/tablet é ativado */
@media (max-width: 1100px) {
    .scroll-down-widget {
        display: flex; /* Exibido em telas menores */
    }
}/* ===================================
 *  UTILITIES & CUSTOM STYLES
 * =================================== */

/* Utility for text alignment */
.text-center {
    text-align: center;
}

/* Utility for gold text color */
.text-gold {
    color: var(--gold-color);
}

/* Hero Section Specific Styles */
.hero-text h1 {
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.hero-cta-btn {
    background-color: var(--gold-color);
    color: #000;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
}

/* CTA Form Section Styles */
.repeat-form-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-form-btn {
    background-color: var(--gold-color);
    color: #000;
}

/* FAQ Section Icon Styles */
.faq-question .chevron {
    width: 20px;
    height: 20px;
}

/* Footer Bottom Styles */
.footer-bottom p {
    color: #999;
    font-size: 0.875rem;
}
