:root {
    --primary: #6d1b2b;
    /* Burgundy */
    --accent: #c5a059;
    /* Gold */
    --whatsapp: #25d366;
    --text: #333;
    --bg-light: #f9f9f9;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.back-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero LP */
.hero-lp {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.tag {
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.small-text {
    font-size: 0.85rem;
    margin-top: 10px;
    color: #888;
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--accent);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.how-it-works h2 {
    color: var(--primary);
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    padding: 20px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--text);
}

/* Benefits */
.benefits {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.benefits-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    max-width: 300px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-img img {
        max-height: 300px;
    }
}