/* ============================================================
   ESTILOS GENERALES
   ============================================================ */
body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #000;
  color: #d4af37;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p, li {
  color: #e6e6e6;
}

a {
  color: #d4af37;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

.section {
  padding: 60px 0;
  border-bottom: 1px solid #333;
}

/* ============================================================
   HEADER CON IMAGEN
   ============================================================ */
.header-with-image {
  text-align: center;
  background-color: #000;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.header-image-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

.header-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  animation: goldenGlow 4s ease-in-out infinite alternate;
}

/* ============================================================
   ANIMACIÓN DORADA SUAVE
   ============================================================ */
@keyframes goldenGlow {
  0% {
    box-shadow:
      0 0 25px rgba(212, 175, 55, 0.35),
      0 0 50px rgba(212, 175, 55, 0.25),
      0 0 80px rgba(212, 175, 55, 0.15);
    filter: brightness(1.05);
  }
  100% {
    box-shadow:
      0 0 45px rgba(212, 175, 55, 0.55),
      0 0 90px rgba(212, 175, 55, 0.35),
      0 0 120px rgba(212, 175, 55, 0.25);
    filter: brightness(1.2);
  }
}

/* ============================================================
   MENÚ DE NAVEGACIÓN
   ============================================================ */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.main-nav a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.main-nav a:hover {
  background-color: #d4af37;
  color: #000;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 24px;
  border: 1px solid #d4af37;
  color: #d4af37;
  display: inline-block;
  margin: 10px;
  transition: 0.3s;
}

.btn-primary {
  background-color: #d4af37;
  color: #000;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #d4af37;
}

.btn:hover {
  transform: scale(1.05);
}

/* ============================================================
   BOTÓN VOLVER AL INICIO
   ============================================================ */
.back-to-home {
  text-align: center;
  margin: 20px 0;
}

.btn-outline:hover {
  background-color: #d4af37;
  color: #000;
}

/* ============================================================
   LISTAS
   ============================================================ */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
}

/* ============================================================
   BLOCKQUOTE
   ============================================================ */
blockquote {
  border-left: 3px solid #d4af37;
  padding-left: 20px;
  margin-top: 30px;
  font-style: italic;
  color: #d4af37;
}

/* ============================================================
   FORMULARIOS
   ============================================================ */
form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  background-color: #111;
  border: 1px solid #444;
  color: #d4af37;
  font-family: inherit;
}

select, .select-format {
  border: 1px solid #d4af37;
  appearance: none;
  cursor: pointer;
}

select option {
  background-color: #000;
  color: #d4af37;
}

button {
  padding: 12px 24px;
  background-color: #d4af37;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  transform: scale(1.05);
}

/* ============================================================
   LOGOS
   ============================================================ */
.section-logo {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto 30px auto;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .main-nav { justify-content: center; }
  .header-flex { flex-direction: column; gap: 20px; }
}
.gracias-container {
  text-align: center;
}

.gracias-title {
  animation: graciasGlow 3s ease-in-out infinite alternate;
}

.gracias-text {
  margin-bottom: 15px;
}

@keyframes graciasGlow {
  0% {
    text-shadow:
      0 0 10px rgba(212, 175, 55, 0.4),
      0 0 20px rgba(212, 175, 55, 0.2);
    transform: scale(1);
  }
  100% {
    text-shadow:
      0 0 18px rgba(212, 175, 55, 0.7),
      0 0 35px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
  }
}
/* Footer redes sociales - estilo línea fina arquitectónica */
.social-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-item {
  color: #d4af37;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  transition: 0.3s;
}

.social-item:hover {
  background-color: #d4af37;
  color: #000;
  transform: scale(1.05);
}

.social-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}
