* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f7;
    color: #333;
}

/* NAV */
header {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    border-radius: 50%;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #4a7c59;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #4a7c59;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7dbf81;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #c4e5d5, #e0f4ec);
    text-align: center;
    padding: 6rem 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c5f42;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #3c6b50;
}

.hero-btn {
    padding: 0.8rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* PRODUCTOS */
.products {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a7c59;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    margin: 15px 0 10px;
    color: #2c5f42;
}

.product-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.product-card .price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #4a7c59;
    margin-bottom: 15px;
}

.btn-order {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: #4a7c59;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-order:hover {
    transform: scale(1.05);
}

/* BENEFICIOS */
.benefits {
    background: #e0f4ec;
    padding: 4rem 2rem;
    text-align: center;
}

.benefits h2 {
    color: #2c5f42;
    margin-bottom: 3rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.benefit {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.benefit p {
    color: #555;
}

/* CONTACTO */
.contact {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    color: #2c5f42;
    margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
    background: #4a7c59;
    color: #fff;
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

/* WHATSAPP */
.whatsapp-bliss {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    font-size: 1.8rem;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}




.logo img {
    width: 100px;   /* Ajusta el tamaño a tu gusto */
    height: auto;
    border-radius: 10%; /* opcional, bordes suaves */
}



/* Contenedor del logo centrado */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0;
}

/* Imagen del logo */
.logo-container .logo {
    width: 80px;  /* Ajusta tamaño del logo */
    height: auto;
}

/* Texto junto al logo */
.logo-container .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #4a7c59;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

/* Ajustes responsive para menú si es necesario */
.nav {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #4a7c59;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7dbf81;
}




/* Imagen del logo */
.logo-img {
    width: 200px;
    height: auto;
    border-radius: 10%;
}
