/* contacto.css - Versión espectacular */
/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

/* =========================
   HERO CONTACTO ESPECTACULAR
========================== */
.hero-contacto {
  height: 80vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 102, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 230, 230, 0.1) 0%, transparent 40%),
    linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.particles-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(1px);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.abstract-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #ff66ff;
  top: 10%;
  left: 10%;
  animation: floatShape 20s infinite alternate ease-in-out;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #00e6e6;
  bottom: 20%;
  right: 15%;
  animation: floatShape 25s infinite alternate-reverse ease-in-out;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #ff3366;
  top: 50%;
  left: 80%;
  animation: floatShape 30s infinite alternate ease-in-out;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(100px, -100px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2em;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-wrapper {
  margin-bottom: 2em;
}

.titulo-contacto {
  font-family: 'Rouge Script', cursive;
  font-size: 6em;
  margin-bottom: 0.3em;
  line-height: 1;
  position: relative;
  display: inline-block;
  text-shadow: 
    0 0 20px rgba(255, 102, 255, 0.8),
    0 0 40px rgba(255, 102, 255, 0.4);
  animation: glitch 3s infinite;
}

@keyframes glitch {
  0%, 100% {
    transform: translate(0);
    text-shadow: 
      0 0 20px rgba(255, 102, 255, 0.8),
      0 0 40px rgba(255, 102, 255, 0.4);
  }
  1%, 1.5% {
    transform: translate(-2px, 1px);
    text-shadow: 
      0 0 20px rgba(0, 230, 230, 0.8),
      0 0 40px rgba(0, 230, 230, 0.4);
  }
  2%, 2.5% {
    transform: translate(2px, -1px);
    text-shadow: 
      0 0 20px rgba(255, 51, 102, 0.8),
      0 0 40px rgba(255, 51, 102, 0.4);
  }
}

.subtitulo-contacto {
  font-size: 1.8em;
  margin-bottom: 1.5em;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 2em auto;
  max-width: 400px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff66ff, transparent);
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 102, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff66ff;
  font-size: 1.2em;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: #ff66ff;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

.arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #ff66ff;
  border-bottom: 2px solid #ff66ff;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* =========================
   CONTENIDO PRINCIPAL
========================== */
.contacto-main {
  position: relative;
  z-index: 1;
}

.contacto-section {
  padding: 6em 8%;
  position: relative;
  overflow: hidden;
}

.contacto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 230, 230, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .contacto-container {
    grid-template-columns: 1fr;
    gap: 3em;
  }
}

/* =========================
   FORMULARIO ESPECTACULAR
========================== */
.formulario-container {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.formulario-container.animated {
  opacity: 1;
  transform: translateX(0);
}

.formulario-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.formulario-card:hover {
  border-color: rgba(255, 102, 255, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 102, 255, 0.1);
}

.formulario-header {
  margin-bottom: 2.5em;
  text-align: center;
}

.formulario-header h2 {
  font-family: 'Special Elite', system-ui;
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.formulario-header h2 i {
  color: #ff66ff;
  font-size: 1.2em;
}

.formulario-header p {
  color: #aaa;
  font-size: 1.1em;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
}

.form-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #ff66ff;
  font-size: 1.2em;
  z-index: 2;
  transition: all 0.3s ease;
}

.textarea-group .input-icon {
  top: 1.5em;
  transform: translateY(0);
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 1.2em 1.2em 1.2em 3.5em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contacto-form textarea {
  padding-top: 1.5em;
  min-height: 150px;
  resize: vertical;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: #ff66ff;
  box-shadow: 0 0 0 2px rgba(255, 102, 255, 0.2);
}

.contacto-form input:focus + .input-glow,
.contacto-form textarea:focus + .textarea-glow {
  opacity: 0.3;
}

.form-group.focused .input-icon {
  color: #00e6e6;
  transform: translateY(-50%) scale(1.2);
}

.input-glow,
.textarea-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #ff66ff, #00e6e6);
  border-radius: 17px;
  filter: blur(10px);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.checkbox-container {
  margin: 1em 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1em;
  cursor: pointer;
  color: #ddd;
  font-size: 0.95em;
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input:checked + .checkbox-custom {
  background: #ff66ff;
  border-color: #ff66ff;
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  color: #000;
  font-weight: bold;
  font-size: 0.9em;
}

.checkbox-text a {
  color: #ff66ff;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background: linear-gradient(135deg, #ff66ff, #00e6e6);
  color: #000;
  padding: 1.2em 2.5em;
  border-radius: 15px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 1em;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 30px rgba(255, 102, 255, 0.4),
    0 0 40px rgba(255, 102, 255, 0.2);
  gap: 1.2em;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-shine {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.submit-btn:hover .btn-shine {
  opacity: 0.6;
}

.formulario-decoration {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.form-paint-drip {
  position: absolute;
  width: 100px;
  height: 150px;
  background: linear-gradient(to bottom, #ff66ff, transparent);
  border-radius: 0 0 50px 50px;
  filter: blur(15px);
  opacity: 0.05;
  top: -50px;
  right: 20%;
  transform: rotate(10deg);
}

.form-brush-stroke {
  position: absolute;
  width: 80px;
  height: 200px;
  background: linear-gradient(to top, #00e6e6, transparent);
  filter: blur(10px);
  opacity: 0.05;
  bottom: -100px;
  left: 15%;
  transform: rotate(-15deg);
}

/* =========================
   INFORMACIÓN DE CONTACTO
========================== */
.info-container {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.info-container.animated {
  opacity: 1;
  transform: translateX(0);
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.info-card:hover {
  border-color: rgba(0, 230, 230, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 230, 230, 0.1);
}

.info-header {
  margin-bottom: 2.5em;
  text-align: center;
}

.info-header h2 {
  font-family: 'Special Elite', system-ui;
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.info-header h2 i {
  color: #00e6e6;
  font-size: 1.2em;
}

.info-decoration {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #00e6e6, #ff66ff);
  border-radius: 2px;
  margin: 0 auto;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  margin-bottom: 3em;
}

.info-item {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 102, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff66ff;
  font-size: 1.5em;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: rgba(255, 102, 255, 0.2);
  transform: scale(1.1);
}

.info-text {
  flex: 1;
}

.info-text h3 {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 0.5em;
  font-family: 'Special Elite', system-ui;
}

.info-text p {
  color: #ddd;
  margin-bottom: 0.8em;
  line-height: 1.5;
}

.info-link,
.whatsapp-link,
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #00e6e6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-link {
  color: #25D366;
}

.email-link {
  color: #ff66ff;
}

.info-link:hover,
.whatsapp-link:hover,
.email-link:hover {
  gap: 0.8em;
  text-decoration: underline;
}

.info-link i,
.email-link i {
  font-size: 0.9em;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: #25D366;
  color: #fff;
  padding: 0.8em 1.5em;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.8em;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  color: #ff66ff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.8em;
  transition: all 0.3s ease;
}

.faq-link:hover {
  gap: 1em;
  color: #ff33ff;
}

.faq-link i {
  transition: transform 0.3s ease;
}

.faq-link:hover i {
  transform: translateX(5px);
}

/* =========================
   REDES SOCIALES
========================== */
.redes-section {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.redes-section h3 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Special Elite', system-ui;
}

.redes-section h3 i {
  color: #ff66ff;
}

.redes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

@media (max-width: 480px) {
  .redes-grid {
    grid-template-columns: 1fr;
  }
}

.redes-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5em;
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.redes-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
}

.redes-card.instagram:hover {
  background: linear-gradient(45deg, #E4405F, #833AB4);
}

.redes-card.tiktok:hover {
  background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55);
}

.redes-card.facebook:hover {
  background: linear-gradient(45deg, #1877F2, #0A7CFF);
}

.redes-card.whatsapp:hover {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.redes-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.redes-card:hover .redes-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.redes-card span {
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.redes-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.redes-card:hover .redes-glow {
  opacity: 0.2;
}

/* =========================
   MAPA DE UBICACIÓN
========================== */
.mapa-section {
  padding: 0 8% 6em;
  position: relative;
}

.mapa-container {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.mapa-container.animated {
  opacity: 1;
  transform: translateY(0);
}

.mapa-header {
  text-align: center;
  margin-bottom: 3em;
}

.mapa-header h2 {
  font-family: 'Special Elite', system-ui;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.mapa-header h2 i {
  color: #ff66ff;
}

.mapa-header p {
  color: #aaa;
  font-size: 1.2em;
}

.mapa-placeholder {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #111, #000);
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mapa-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2em;
}

.mapa-content i {
  font-size: 4em;
  color: #ff66ff;
  margin-bottom: 1em;
}

.mapa-content h3 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 0.5em;
  font-family: 'Special Elite', system-ui;
}

.mapa-content p {
  color: #aaa;
  margin-bottom: 2em;
  font-size: 1.1em;
}

.mapa-btn {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  background: linear-gradient(135deg, #ff66ff, #00e6e6);
  color: #000;
  padding: 1em 2em;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mapa-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 25px rgba(255, 102, 255, 0.3),
    0 0 30px rgba(255, 102, 255, 0.2);
  gap: 1.2em;
}

.mapa-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 230, 230, 0.1) 0%, transparent 50%);
  filter: blur(20px);
  animation: mapGlowPulse 5s infinite alternate;
}

@keyframes mapGlowPulse {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* =========================
   PRE-FOOTER Y FOOTER
========================== */
.prefooter {
  background: linear-gradient(to bottom, #000, #111);
  padding: 4em 8%;
  position: relative;
  overflow: hidden;
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ff66ff, transparent);
}

.prefooter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3em;
  max-width: 1200px;
  margin: 0 auto;
}

.prefooter-col h3 {
  font-family: 'Klee One', cursive;
  font-size: 1.4em;
  margin-bottom: 1em;
  color: #fff;
  position: relative;
  padding-bottom: 0.5em;
}

.prefooter-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff66ff;
}

.prefooter-col p,
.prefooter-col li {
  margin-bottom: 0.8em;
  line-height: 1.6;
  color: #aaa;
}

.prefooter-col ul {
  list-style: none;
  padding: 0;
}

.prefooter-col ul li {
  position: relative;
  padding-left: 1.5em;
}

.prefooter-col ul li::before {
  content: '•';
  color: #ff66ff;
  position: absolute;
  left: 0;
}

.prefooter-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.prefooter-icons .social-link {
  color: #fff;
  font-size: 1em;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.prefooter-icons .social-link:hover {
  color: #ff66ff;
  transform: translateX(5px);
}

footer {
  background: #000;
  text-align: center;
  padding: 2em;
  color: #666;
  font-size: 0.9em;
  border-top: 1px solid #222;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #ff66ff, #00e6e6);
}

/* =========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 1024px) {
  .titulo-contacto {
    font-size: 4.5em;
  }
  
  .contacto-container {
    grid-template-columns: 1fr;
    gap: 3em;
  }
  
  .formulario-container,
  .info-container {
    transform: translateY(30px);
  }
  
  .formulario-container.animated,
  .info-container.animated {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-contacto {
    height: 70vh;
    min-height: 500px;
  }
  
  .titulo-contacto {
    font-size: 3.5em;
  }
  
  .subtitulo-contacto {
    font-size: 1.4em;
  }
  
  .contacto-section {
    padding: 4em 5%;
  }
  
  .formulario-card,
  .info-card {
    padding: 2em;
  }
  
  .formulario-header h2,
  .info-header h2 {
    font-size: 1.8em;
  }
  
  .info-item {
    flex-direction: column;
    gap: 1em;
  }
  
  .info-icon {
    align-self: flex-start;
  }
  
  .mapa-header h2 {
    font-size: 2em;
  }
  
  .prefooter-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2em;
  }
  
  .prefooter-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .prefooter-col ul li {
    padding-left: 0;
  }
  
  .prefooter-col ul li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .titulo-contacto {
    font-size: 2.8em;
  }
  
  .subtitulo-contacto {
    font-size: 1.2em;
  }
  
  .contacto-form input,
  .contacto-form textarea {
    padding: 1em 1em 1em 3em;
  }
  
  .redes-grid {
    grid-template-columns: 1fr;
  }
  
  .mapa-content h3 {
    font-size: 1.5em;
  }
  
  .mapa-content p {
    font-size: 1em;
  }
}