/* FONTES E CONFIGURAÇÕES GLOBAIS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --cor-azul-principal: #243e98;
    --cor-amarelo-destaque: #e3a700;
    --cor-fundo: #f0f2f5;
    --cor-texto-branco: #ffffff;
    --cor-texto-escuro: #1c1e21;
    --cor-whatsapp-verde: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto-escuro);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--cor-amarelo-destaque);
}

.highlight-blue {
    color: var(--cor-azul-principal);
}

/* ================================ */
/* HERO SECTION                     */
/* ================================ */
.hero-section {
    position: relative;
    height: 85vh; /* AJUSTADO DE VOLTA para mostrar o conteúdo abaixo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cor-texto-branco);
    padding: 0 20px;
}

.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #ccc; /* Cor de fallback */
    background-image: url('caminho/para/sua/imagem.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(36, 62, 152, 0.85);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; 
}

.hero-logo {
    max-width: 235px;
    height: auto;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 650px;
    opacity: 0.9;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background-color: var(--cor-amarelo-destaque);
    color: var(--cor-texto-escuro);
}

.btn-whatsapp {
    background-color: transparent;
    border-color: var(--cor-texto-branco);
    color: var(--cor-texto-branco);
}
.btn-whatsapp .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0rem;
}
.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: var(--cor-amarelo-destaque);
}

/* ================================ */
/* INDICADORES DE SCROLL (NOVO)     */
/* ================================ */
.scroll-down-indicators {
    position: absolute;
    bottom: 90px; /* Posiciona um pouco abaixo da hero-section */
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5; /* Acima de outros elementos, mas abaixo do modal */
    padding: 0 5%; /* Adiciona um padding para as setas não ficarem nas extremidades */
    pointer-events: none; /* Permite clicar através das setas */
}

.scroll-arrow {
    width: 3.5rem; /* Tamanho da seta */
    height: 3.5rem;
    color: var(--cor-amarelo-destaque);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3)); /* Sombra para destacar */
    animation: bounce 2s infinite; /* Animação de pulo */
}

.left-arrow {
    transform: translateX(-50%); /* Ajuste para centralizar visualmente */
}

.right-arrow {
    transform: translateX(50%); /* Ajuste para centralizar visualmente */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}


/* ================================ */
/* SECTIONS NORMAIS (SEM SOBREPOSIÇÃO) */
/* ================================ */
.how-it-works-section {
    padding: 1.3rem 0;
    background-color: var(--cor-fundo);
    position: relative; /* Para que o z-index da seta não a esconda por baixo */
    z-index: 4; /* Garante que a seção fique acima das setas */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.section-header p {
    font-size: 1.1rem;
    color: #65676b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--cor-azul-principal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background-color: var(--cor-azul-principal);
    color: var(--cor-texto-branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 0 5px var(--cor-fundo);
}

.step-icon {
    margin-bottom: 1rem;
}
.step-icon .icon {
    width: 3rem;
    height: 3rem;
    color: var(--cor-azul-principal);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    color: #65676b;
    line-height: 1.6;
}

.benefits-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    background-color: var(--cor-fundo);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    margin-bottom: 1rem;
}
.benefit-icon .icon {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--cor-azul-principal);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #65676b;
    line-height: 1.6;
}

.final-cta-section {
    background-color: var(--cor-azul-principal);
    color: var(--cor-texto-branco);
    padding: 5rem 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.final-cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info {
    margin-top: 2rem;
    opacity: 0.8;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* ================================ */
/* BOTÕES FIXOS                     */
/* ================================ */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btn-fixed {
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-texto-branco);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, opacity 0.3s ease;
}
.btn-fixed:hover {
    transform: scale(1.05);
}

.btn-alugue {
    background-color: var(--cor-amarelo-destaque);
    color: var(--cor-texto-escuro);
}

.btn-whatsapp-icon {
    background-color: var(--cor-whatsapp-verde);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
}

.btn-whatsapp-icon .icon {
    width: 32px;
    height: 32px;
}

/* ================================ */
/* ESTILOS DO FORMULÁRIO MODAL      */
/* ================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--cor-texto-branco);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    color: var(--cor-azul-principal);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-content p {
    text-align: center;
    color: #65676b;
    margin-bottom: 1.5rem;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--cor-texto-escuro);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

#rental-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ================================ */
/* RESPONSIVIDADE                   */
/* ================================ */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }

    .how-it-works-section, .benefits-section {
        padding: 4rem 0;
    }

    .steps-grid, .benefits-grid {
        gap: 3rem 1.5rem;
    }

    .btn-alugue {
        display: none;
    }

    .fixed-buttons {
        bottom: 15px;
        right: 15px;
    }

    .btn-whatsapp-icon {
        width: 55px;
        height: 55px;
    }

    .btn-whatsapp-icon .icon {
        width: 28px;
        height: 28px;
    }

    .scroll-down-indicators {
        bottom: -20px; /* Ajusta a posição das setas na responsividade */
    }

    .scroll-arrow {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-header h2,
    .final-cta-section h2 {
        font-size: 1.8rem;
    }

    .section-header p,
    .final-cta-section p {
        font-size: 1rem;
    }

    .scroll-down-indicators {
        display: none; /* Opcional: esconder setas em telas muito pequenas */
    }
}