/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f8f6f2;
    color: #3b1d12;
}

/* HEADER */
.header {
    background: #3b1d12;
    height: 70px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #f8f6f2;
}

.nav a {
    color: #f8f6f2;
    margin-left: 22px;
    text-decoration: none;
}

.nav a:hover {
    color: #3f7a3b;
}

.login-btn {
    background: #3f7a3b;
    padding: 7px 14px;
    border-radius: 5px;
    color: white !important;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #3b1d12, #3f7a3b);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* SECTIONS */
.section {
    padding: 60px 40px;
    text-align: center;
}

.section.light {
    background: white;
}

.section h2 {
    margin-bottom: 30px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 220px;
    margin: 15px;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.price-tag {
    font-size: 22px;
    font-weight: bold;
    color: #3f7a3b;
}

.card button {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background: #3b1d12;
    color: white;
    border: none;
    border-radius: 6px;
}

/* WHY */
.why {
    list-style: none;
}

.why li {
    margin: 10px 0;
}

/* CONTACT */
.contact {
    background: white;
}

.contact-buttons {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-email,
.btn-whatsapp {
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.btn-email {
    background: #3b1d12;
}

.btn-email:hover {
    background: #3f7a3b;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.contact-address {
    margin-top: 20px;
}

/* FOOTER */
.footer {
    background: #2a150e;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .nav {
        margin-top: 10px;
    }
}
