/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* BASE */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff url('img/reiki-bg.png') repeat;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 2px solid #d4af37;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

nav h1 {
  color: #d4af37;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: clamp(3rem, 6vw, 6rem) 1rem;
}

.hero h2 {
  color: #d4af37;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.hero h3 {
  color: #d4af37;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-top: 0;
}

/* CONTENIDO */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  text-align: center;
}

.content p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}
hr { 
      border: none; 
      border-top: 1px solid #ccc; 
      border-bottom: 1px solid #fff; 
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
      height: 0; 
      margin: 20px 0; 
}
/* IMÁGENES RESPONSIVE */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content img {
  width: 100%;
  max-width: 700px;
  margin: 1.5rem auto;
  border-radius: 6px;
}

/* FORMULARIO */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 0.9rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

button:hover {
  opacity: 0.9;
}

/* BOTÓN DESTACADO */
.fcc-btn {
  background-color: #E6A019;
  color: #000;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  display: inline-block;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #ffffff ;
  display: flex;              /* ⬅️ CLAVE */
  flex-direction: row;
  justify-content: center;    /* centra en horizontal */
  align-items: center;        /* centra en vertical */
  gap: 1rem;                  /* separación entre iconos */
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #d4af37;
  font-size: 0.9rem;
}
.social-icons {
  display: flex;
  justify-content: flex;
  align-items: center;
  gap: 1rem; /* espacio entre iconos */
}

.social-icons a {
  color: #000;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #333;
  transform: scale(1.1);
}


/* ANIMACIONES */
.fade-in,
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0s ease, transform 0s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  nav ul {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: row;
    gap: 0.5rem;
  }
}
.violeta-section {
  background-color: #E6D9FF; /* violeta claro */
  padding: 2rem;
  border-radius: 12px;
  color: #3a2b5c;
}

.violeta-section h2 {
  color: #6b4bbd;
}

.violeta-section p {
  font-size: 1rem;
  line-height: 1.6;
}
.white-section {
  background-color: #f6f6f6; /* blanco luz */
  padding: 2rem;
  border-radius: 12px;
  color: #3a2b5c;
}

.white-section h2 {
  color: #6b4bbd;
}

.white-section p {
  font-size: 1rem;
  line-height: 1.6;
}
.green-section {
  background-color: #bffff7; /* verde paz */
  padding: 2rem;
  border-radius: 12px;
  color: #000000;
}

.green-section h2 {
  color: #d4af37;
}

.green-section p {
  font-size: 1rem;
  line-height: 1.6;
}
.contenedor {
   display: flex;
   flex-wrap: wrap;
}

.contenedor img {
    width: 30%;
}

.imagen {
  box-sizing: border-box;
  flex-basis: 33.33%;
  flex-shrink: 0;
  padding: 5px;
}

.imagen h5 {
  margin: 5px 0;
}