:root {
    --principal: #0496ff
;
    --fondo: #FFF8F0;
    --texto: #000000;
    --acento: #d81159;
    --blanco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Ancizar Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: #000000;
    background-color: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #8f2d56, #0496ff);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #ffbc42;
    transform: translateY(-2px);
}

.bienvenido {
    background-color: var(--principal);
    color: var(--blanco);
    text-align: center;
    padding: 40px 20px;
}

.bienvenido h1 {
    margin: 0;
    font-size: 2.5em;
}

.bienvenido p {
    margin-top: 10px;
    font-size: 1.2em;
}

.contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.productos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.producto {
    background-color: var(--blanco);
    border: 2px solid var(--acento);
    border-radius: 10px;
    width: 250px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.producto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.producto h3 {
    margin: 15px 0 5px;
    font-size: 1.3em;
}

.producto p {
    font-size: 0.95em;
}

.precio {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--principal);
    font-size: 1.2em;
}

.newsletter {
    background: linear-gradient(rgba(143, 45, 86), rgba(	4, 150, 255));
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.newsletter h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.newsletter p {
    color: #ffffff;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 250px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6c757d;
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #495057;
    transform: translateY(-2px);
}

.map-section {
    margin: 3rem 0;
    text-align: center;
}

.map-section h3 {
    color: #495057;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

footer {
    background: #343a40;
    color: #adb5bd;
    text-align: center;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
}