* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

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

/* Hero Section */
.hero {
    background: url('../assets/venda/catedral.jpeg') center/cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

/* Cards Section */
.features { background-color: #f9f9f9; padding: 60px 0; }
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card h3 { margin-bottom: 15px; font-size: 1.3rem; color: #333; }
.card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* Container Principal */
.flex-form {
    display: flex;
    align-items: center; /* Centraliza verticalmente o texto com a imagem */
    justify-content: space-between;
    gap: 60px;
    padding: 80px 20px;
}

.form-container {
    flex: 1;
    text-align: left; /* Garante o alinhamento à esquerda */
}

/* Título */
.form-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a1a1a;
    max-width: 500px; /* Impede que o título fique longo demais */
}

/* Linha Divisória (Step Indicator) */
.step-indicator {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d1d1d1; /* Linha fina cinza */
    padding-bottom: 8px;
    margin-bottom: 35px;
    max-width: 500px; /* Alinha a largura da linha com o título */
}

.label-text {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
}

/* Botão CTA */
.button-wrapper {
    display: flex;
    justify-content: flex-start; /* Alinha o botão à esquerda */
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background-color: #53b4ff;
    color: white !important;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.btn-cta:hover {
    background-color: #268bff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 6, 255, 0.35);
}

.arrow {
    margin-left: 12px;
    font-size: 1.2rem;
}

/* Imagem */
.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .flex-form {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .form-title, .step-indicator {
        margin-left: auto;
        margin-right: auto;
    }
    .button-wrapper {
        justify-content: center;
    }
}