/* --- Sección de Contactanos --- */

.contactanos-section {
  text-align: center;
  max-width: 700px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03); /* Mantiene el fondo oscuro */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.contactanos-section h1 {
  font-size: 2.5rem;
  color: #FFD700; /* dorado como en tu estilo */
  text-shadow: 1px 1px 5px #000;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.contactanos-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* --- Formulario dentro de contactanos-section --- */
.contactanos-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactanos-section .contact-form label {
  font-weight: bold;
  color: #ccc;
  text-align: left;
}

.contactanos-section .contact-form input,
.contactanos-section .contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  background: #2c2c2c;
  color: #fff;
  transition: 0.3s;
}

.contactanos-section .contact-form input:focus,
.contactanos-section .contact-form textarea:focus {
  background: #333;
  box-shadow: 0 0 5px #ff6b6b;
}

/* --- Botón --- */
.contactanos-section .contact-form .btn {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b6b, #ff2e63);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contactanos-section .contact-form .btn:hover {
  background: linear-gradient(135deg, #ff2e63, #ff6b6b);
  transform: translateY(-2px);
}

/* --- Animación --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contactanos-section .contact-form .btn {
  padding: 14px;
  border: none;
  border-radius: 50px; /* más pill-shape */
  background: linear-gradient(135deg, #ff6b6b, #ff2e63);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
}

.contactanos-section .contact-form .btn {
  text-decoration: none;
  color: #111;
  background: #FFD700;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contactanos-section .contact-form .btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #FFD700, #ffec8b);
}

/* --- Modal --- */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(20,20,20,0.95);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: fadeUp 0.4s ease;
  max-width: 500px;
}

.modal-content h2 {
  color: #FFD700;
  margin-bottom: 20px;
}

.modal-content p {
  color: #ddd;
  margin-bottom: 20px;
}

.modal-content .btn {
  text-decoration: none;
  color: #111;
  background: #FFD700;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.modal-content .btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #FFD700, #ffec8b);
}

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

