.elementor-543 .elementor-element.elementor-element-6218c05{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fa39a94 *//* CONTENEDOR GENERAL */
.contacto-maxi {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0d0d0d, #17001a, #000000);
  color: white;
  overflow: hidden;
  border-radius: 22px;
}

/* EFECTO GRANULADO */
.grain {
  position: absolute;
  inset: 0;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.10;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* HEADER */
.contacto-header {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  animation: fadeUp 1s ease-out;
}

.contacto-header h1 {
  font-size: 52px;
  font-weight: 800;
  color: #FC6C04;
  letter-spacing: -1px;
}

.contacto-header p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* FRASES DINÁMICAS */
.frases-rotantes {
  height: 40px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.frase {
  opacity: 0;
  position: absolute;
  width: 100%;
  font-size: 18px;
  animation: fraseFade 12s infinite;
}

.frase:nth-child(2) { animation-delay: 3s; }
.frase:nth-child(3) { animation-delay: 6s; }
.frase:nth-child(4) { animation-delay: 9s; }

@keyframes fraseFade {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  25% { opacity: 1; }
  35% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; }
}

/* CONTENIDO */
.contacto-content {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BLOQUE INFO */
.contacto-info {
  max-width: 450px;
  animation: slideLeft 1.5s ease-out;
}

.contacto-info h2 {
  font-size: 28px;
  color: #FC6C04;
  margin-bottom: 15px;
}

.lista-info li {
  margin-bottom: 10px;
  opacity: 0.9;
}

/* REDES */
.contacto-redes h3 {
  margin-top: 25px;
  font-size: 20px;
}

.contacto-redes a {
  display: inline-block;
  margin-right: 12px;
  color: #FC6C04;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contacto-redes a:hover {
  color: #ff2e63;
  transform: scale(1.1);
}

/* FORMULARIO */
.contacto-form form {
  display: flex;
  flex-direction: column;
  width: 380px;
  animation: slideRight 1.5s ease-out;
}

.contacto-form label {
  color: #ff97e0;
  margin-bottom: 6px;
}

.contacto-form input,
.contacto-form textarea {
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 14px;
  border: none;
  background: #1d001d;
  color: white;
  transition: 0.3s;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  transform: scale(1.02);
  box-shadow: 0 0 12px #ff2e63;
}

.contacto-form button {
  padding: 15px;
  background: #ff2e63;
  color: white;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.contacto-form button:hover {
  background: #ff4f8a;
  transform: translateY(-3px);
}

/* FAQ */
.faq-section {
  margin-top: 70px;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #FC6C04;
}

.faq-item {
  background: #150015;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #2a002a;
  animation: fadeUp 1.2s ease;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color:#FC6C04;
}

.faq-item p {
  opacity: 0.85;
}

/* ANIMACIONES */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}/* End custom CSS */