/* Estilos Gerais */
:root {
    --primary-color: #0a2540; /* Azul escuro */
    --secondary-color: #ffffff; /* Branco */
    --accent-color: #d4af37; /* Dourado */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #0a2540;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Centralização global */
p, h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
}

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

.logo h1 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0;
}

.tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Botões */
.btn-primary, .btn-cta {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.3rem;
    padding: 20px 40px;
    border: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    margin: 2rem auto;
    display: block;
    max-width: 400px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 100px 0 80px;
}

.hero .headline {
    font-size: 2.8rem;
    color: var(--secondary-color);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.hero .subheadline {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

/* Transformation Section */
.transformation {
    background-color: var(--light-bg);
    text-align: center;
}

.benefits {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
    width: 33.33%;
    padding: 0 15px;
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-text p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Ajuste para os dois últimos itens ficarem centralizados */
.benefit-item:nth-last-child(-n+2) {
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--secondary-color);
}

.steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step-item {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.step-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px;
}

.testimonial-quote {
    padding: 20px;
}

.testimonial-quote p {
    font-style: italic;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Urgency Section */
.urgency {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
}

.urgency .section-title {
    color: var(--secondary-color);
}

.urgency .section-description {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--secondary-color);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--secondary-color);
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .hero .headline {
        font-size: 2rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .hero .headline {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    section {
        padding: 60px 0;
    }
}
