/* static/css/contacto.css */

/* ===== 1. HERO CINEMÁTICO (Consistente) ===== */
.contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  /* Imagen de fondo (Textura o Dancers) */
  background-image: url("https://images.unsplash.com/photo-1535525153412-5a42439a210d?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-bottom: 0;
}

/* Capa oscura */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

/* ✅ DEGRADADO DE MARCA (Amarillo -> Naranja -> Rojo) */
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.85), rgba(249, 115, 22, 0.85), rgba(220, 38, 38, 0.85));
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: 2;
}

.contact-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-separator {
    width: 60px; 
    height: 3px; 
    background: #fff; 
    border-radius: 2px;
    margin: 1.5rem auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* ===== 2. TARJETAS SOCIALES (Minimalistas & Cálidas) ===== */
.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.1); /* Borde naranja sutil */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Icono (Círculo) */
.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  
  /* Estado Normal: Fondo suave, icono color marca */
  background: #fff7ed; /* Orange tint */
  color: #ea580c; /* Naranja intenso */
  transition: all 0.3s ease;
}

.social-info {
  flex-grow: 1;
  min-width: 0; /* Para que el texto se corte bien */
}

.social-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #431407;
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.social-handle {
  font-family: 'Lato', sans-serif;
  color: #78716c;
  font-size: 0.9rem;
  font-weight: 400;
}

.social-arrow {
  color: #ea580c;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* --- HOVER EFFECT --- */
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.social-card:hover .social-icon {
  /* El icono se llena con el degradado de marca */
  background: linear-gradient(135deg, #facc15, #f97316, #dc2626);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.25);
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 3. CTA INFERIOR ===== */
.cta-box {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Decoración de fondo sutil */
.cta-box::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.2), transparent 70%);
  pointer-events: none;
}

.btn-cta {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
  color: white;
  filter: brightness(1.1);
}