/* Reset Básico e Variáveis de Cor */
:root {
    --primary-color: #b54e3e;
    --secondary-color: #3eab99;
    --background-color: #f7f5f4;
    --text-color: #424242;
    --white-color: #ffffff;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

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

/* Cabeçalho */
header {
    padding: 20px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* Botões */
.button-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #8c3b2e; /* Tom mais escuro da cor primária */
}

/* Seção Hero */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #616161;
    margin-bottom: 30px;
}

.app-buttons a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.2s ease;
}
.app-buttons a:hover {
    transform: translateY(-3px);
}
.app-buttons img {
    height: 50px;
}

.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px; /* <-- BORDA ARREDONDADA */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* <-- SOMBRA SUAVE */
}

/* Seção Como Funciona */
#how-it-works {
    padding: 60px 0;
    text-align: center;
}
#how-it-works h2 {
    font-size: 36px;
    margin-bottom: 40px;
}
.steps {
    display: flex;
    gap: 30px;
}
.step {
    flex: 1;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Seção CTA e Rodapé */
.cta {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}
.cta h2 {
    font-size: 36px;
    margin: 0 0 10px 0;
}
.cta p {
    margin-bottom: 30px;
}

footer {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: #9e9e9e;
}
footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 40px;
    }
    .steps {
        flex-direction: column;
    }
    .hero-text h1 {
        font-size: 36px;
    }
}