/* 🌸 RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Caveat', cursive;
  background-color: #fff0f5;
  color: #800020; /* borgoña para todo el texto */
}

/* 🌟 FONDO INDEX */
body.solo-index .donas-fondo {
  content: "";
  background: url("../assets/donas.png") no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15; 
}

/* 🪄 ENCABEZADO */
header {
  background-color: #800020;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0;
}

nav li {
  margin: 0 1rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid #ffd6e8;
}

/* 💬 INTRO QUIÉNES SOMOS */
.quienes-somos {
  padding: 4rem 2rem;
  text-align: center;
}

.intro-text p {
  background-color: rgba(255, 192, 203, 0.2);
  border: 2px solid #ffd6e8;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  line-height: 1.7;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
}

/* 🧁 GRID DE DOÑAS */
.doñas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.doña-card {
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(255, 204, 188, 0.5);
  border-radius: 15px;
  padding: 1rem;
  width: 240px;
  text-align: center;
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 192, 203, 0.3);
}

.doña-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(255, 204, 188, 0.8);
}

.doña-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffd6e8;
  margin-bottom: 1rem;
}

.doña-card h3 {
  font-size: 1.4rem;
  color: #800020;
}

.bio {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #4a0d1a;
  display: none;
  animation: fadeIn 0.6s ease;
}

.doña-card.active .bio {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ BOTONES */
.glow-button {
  background-color: #800020;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 0 10px #ffd6e8;
  transition: transform 0.2s ease;
  margin: 1rem;
}

.glow-button:hover {
  transform: scale(1.05);
  background-color: #a00028;
}

/* 🔗 NAVEGACIÓN INTERNA */
.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* 🎧 PLATAFORMAS */
#plataformas {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #fff6f9;
  color: #800020;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.platform-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #800020;
  font-weight: bold;
}

.platform-icon-img img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

/* 📱 REDES SOCIALES */
#redes {
  background-color: #fff0f5;
  padding: 2rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.social-icon img {
  width: 40px;
  height: 40px;
}

.social-icon-label {
  display: block;
  margin-top: 0.3rem;
  font-weight: bold;
  color: #800020;
}

/* 📝 COMENTARIOS */
#comentarios {
  background-color: #fff5f7;
  border: 2px solid #ffd6e8;
  border-radius: 20px;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 1000px;
  box-shadow: 0 0 20px rgba(128, 0, 32, 0.1);
  position: relative;
  z-index: 2;
}

.comentarios-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.comentarios-form,
.comentarios-recientes {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(128, 0, 32, 0.08);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #800020;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
}

.comentarios-form button {
  background-color: #800020;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 0 10px #ffd6e8;
  transition: transform 0.2s ease;
}

.comentarios-form button:hover {
  background-color: #a00028;
  transform: scale(1.03);
}

.comentario {
  background-color: #fff1f5;
  border-left: 5px solid #ffb6c1;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a4a4a;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🦶 FOOTER */
footer {
  background-color: #800020;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-section {
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 0.8rem;
  color: #ffe4ec;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

footer p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
