* { 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%; }




/* MISIÓN Y VISIÓN */
.mission-vision {
    background: #f9f9f7;
    padding: 5rem 2rem;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f42;
    margin-bottom: 3rem;
}

.mv-container {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mv-card {
    background: #ffffff;
    width: 320px;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* EFECTO SALTO */
.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(74,124,89,0.35);
}

.mv-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5f42;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .mv-container {
        gap: 2rem;
    }

    .mv-card {
        width: 100%;
        max-width: 350px;
    }
}









/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #ffffff;
    top: 100%;
    left: 0;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #2c5f42;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f3f3f3;
}

.dropdown:hover .dropdown-menu {
    display: block;
}



html {
    scroll-behavior: smooth;
}




/* TABLA MATCHA */
.matcha-table {
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.matcha-table thead {
  background: #6fbf73;
  color: #fff;
}

.matcha-table tbody tr {
  transition: all 0.3s ease;
  cursor: pointer;
}

.matcha-table tbody tr:hover {
  background-color: #e9f7ef;
  transform: scale(1.01);
  box-shadow: inset 0 0 0 1px #6fbf73;
}

.matcha-table td {
  font-weight: 500;
}



/* CARRUSEL MATCHA */
.carousel-img {
  height: 70vh;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(44, 95, 66, 0.6);
  padding: 1.5rem 2rem;
  border-radius: 20px;
}

.carousel-caption h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #ffffff;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: #eaf7f0;
}

/* Flechas visibles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-img {
    height: 45vh;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
  }
}





/* MAPA MATCHA */
.map-matcha iframe {
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}





/* REDES SOCIALES */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Colores oficiales */
.facebook {
  background: #1877f2;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, #fd5949 45%, 
    #d6249f 60%, #285AEB 90%);
}
