/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #E6E6FA; /* Lavanda suave */
  color: #555;
  line-height: 1.6;
}

/* ENCABEZADO */
header {
  background-color: #F8C8DC; /* Rosa palo */
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav ul li a.active {
  color: #c65fa0;
}

/* HERO */
.hero {
  background-color: #C8E6C9; /* Verde menta */
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: #333;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  background-color: #FFE5B4; /* Durazno claro */
  color: #333;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #fdd9a0;
}

/* SECCIONES */
section {
  padding: 40px 20px;
  text-align: center;
}

.galeria .productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.producto {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 15px;
  width: 200px;
}

.producto img {
  width: 100%;
  border-radius: 10px;
}

.producto h3 {
  margin: 10px 0 5px;
  color: #333;
}

/* TESTIMONIOS */
.testimonios blockquote {
  font-style: italic;
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #C8E6C9;
  margin: 15px auto;
  max-width: 600px;
}

/* FORMULARIO DE CONTACTO */
form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  background-color: #C8E6C9;
  color: #333;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
  width: 100%;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #aedfaa;
}

/* Mensajes de error y éxito */
.error {
  color: #b33f84;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: none;
}

.form-message {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  display: none;
  text-align: center;
}

/* REDES SOCIALES */
.redes {
  margin-top: 30px;
  text-align: center;
}

.redes a {
  display: inline-block;
  margin: 10px 15px;
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s;
}

.redes a:hover {
  color: #c65fa0;
}

/* BOTÓN WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* FOOTER */
footer {
  background-color: #F8C8DC;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* PREGUNTAS FRECUENTES Y POLÍTICAS */
.faq-politicas {
  background-color: #fff;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.faq-politicas h2 {
  color: #c65fa0;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* LIGHTBOX2 */
.lightboxOverlay {
  z-index: 9999 !important;
}

.lightbox {
  z-index: 10000 !important;
}
