/* IMPORTAR FUENTE POPPINS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    background: #f7f3ea;
    color: #2c2c2c;
    line-height: 1.5;
}

/* HEADER */
header {
    background: white;
    padding: 15px 5%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: 90px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #800020;
}

.btn-header {
    background: #800020;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-header:hover {
    background: #5a0016;
}

/* FOOTER */
footer {
    background: #2c2c2c;
    color: #e0e0e0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-redes {
    flex: 2;
    min-width: 250px;
}

.footer-redes h4 {
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.redes-sociales a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.redes-sociales a:hover {
    color: #b87333;
}

.footer-contacto {
    flex: 1;
    min-width: 150px;
}

.footer-contacto h4 {
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.whatsapp-footer {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #444;
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    nav ul {
        gap: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .redes-sociales {
        justify-content: center;
    }
}
