* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9fa;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
}

nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b6b;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    text-align: center;
    padding: 100px 20px;
    border-radius: 0 0 30px 30px;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-principal {
    display: inline-block;
    background-color: #ffffff;
    color: #ff6b6b;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.btn-principal:hover {
    transform: translateY(-3px);
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
}

.beneficio-item h3 {
    color: #4facfe;
    margin-bottom: 15px;
}

.categoria {
    margin-bottom: 50px;
}

.titulo-categoria {
    font-size: 1.8rem;
    color: #ff6b6b;
    border-bottom: 2px solid #fecfef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.subtitulo-categoria {
    font-size: 1.4rem;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tarjeta-producto {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

.tarjeta-producto:hover {
    transform: translateY(-5px);
}

.img-placeholder {
    width: 100%;
    height: 250px;
    background-color: #e9ecef;
    margin-bottom: 15px;
}

.tarjeta-producto h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    padding: 0 10px;
}

.tarjeta-producto p {
    color: #777;
    font-size: 0.9rem;
    padding: 0 10px;
}

.info-ubicacion {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.whatsapp-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.btn-wa {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    text-align: center;
    transition: transform 0.2s;
}

.btn-wa:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    nav {
        margin-top: 15px;
    }
    
    nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}