/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== GENERAL ===== */
body {
  background: #fffaf2;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
header {
  background: white;
  border-bottom: 1px solid #eee;
}

nav a {
  margin: 0 10px;
  font-weight: 600;
  color: #1f3d2b;
}

nav a:hover {
  color: #c98a2b;
}

/* ===== HERO ===== */
.adicionales-section {
  padding: 60px 20px;
  text-align: center;
}

.adicionales-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #1f3d2b;
}

.adicionales-desc {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #555;
}

/* ===== BOTONES ===== */
.btn-whatsapp {
  display: inline-block;
  background: #1f3d2b;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #c98a2b;
}

/* ===== TARJETAS ===== */
.adicionales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.adicional-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform .3s;
}

.adicional-card:hover {
  transform: translateY(-6px);
}

.adicional-card h3 {
  margin-bottom: 10px;
  color: #1f3d2b;
}

.adicional-card p {
  margin-bottom: 20px;
  color: #555;
}

/* ===== TAGS ===== */
.tag-premium {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c98a2b;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 12px;
}

/* ===== COTIZACIÓN ===== */
.cotizacion-box {
  background: #1f3d2b;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cotizacion-box h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cotizacion-box p {
  margin-bottom: 25px;
  font-size: 16px;
}

.cotizacion-box textarea {
  width: 100%;
  max-width: 600px;
  height: 200px;
  padding: 15px;
  border-radius: 12px;
  border: none;
  margin-bottom: 20px;
  resize: none;
}

.cotizacion-box button {
  background: #c98a2b;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.cotizacion-box button:hover {
  background: #e0a13a;
}

/* ===== FOOTER ===== */
footer {
  background: #fff;
  border-top: 1px solid #eee;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .adicionales-section h2 {
    font-size: 30px;
  }
}
.adicional-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  margin-bottom: 15px;
}
.destacado {
  border: 2px solid #c9a24d;
  background: linear-gradient(145deg, #fffdf7, #ffffff);
}
.redes-sociales {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.redes-sociales img {
  width: 35px;
  transition: transform 0.3s ease;
}

.redes-sociales img:hover {
  transform: scale(1.2);
}
.social-float {
  position: fixed;
  right: 16px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
  text-decoration: none;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.whatsapp {
  background-color: #25d366;
}

.social-btn:hover {
  transform: scale(1.08);
}

}

.social-btn{
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn img{
  width: 28px;
}

.social-btn.instagram{
  border: 2px solid #E1306C;
}

.social-btn.facebook{
  border: 2px solid #1877F2;
}
.historia-section{
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.historia-section h1{
  font-size: 40px;
  color: #1f3d2b;
  margin-bottom: 20px;
}

.historia-texto{
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.btn-principal{
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #1f3d2b;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}
.paquetes-section{
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.paquete-card{
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  border: 3px solid #d4af37;
}

.btn-paquetes{
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
}
/* ===== BOTÓN WHATSAPP FLOTANTE ===== */

.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,.35);
  z-index: 9999;
}

.whatsapp-float img{
  width: 30px;
}
.facebook-float {
  position: fixed;
  bottom: 90px; /* ajusta si tienes WhatsApp abajo */
  right: 20px;
  background-color: #1877f2;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  z-index: 999;
  text-decoration: none;
}

.facebook-float:hover {
  background-color: #145dbf;
}
.hero-img{
  width:100%;
  max-width:900px;   /* controla el tamaño máximo */
  height:auto;
  display:block;
  margin:40px auto;  /* la centra */
  border-radius:20px;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
@media (max-width:768px){
  .hero-img{
    max-width:100%;
    margin:25px auto;
  }
}
.aguas-frescas {
  margin-top: 50px;
}

.aguas-frescas .menu-list {
  line-height: 1.9;
  font-size: 16px;
  margin-top: 15px;
}

.menu-nota {
  font-size: 14px;
  color: #555;
  margin-top: 12px;
}












