/* ============================================
   CONTACTO - Diseño Premium Alta Gama
   Colores corporativos: Naranja + Azul
   ============================================ */

/* --- FUENTES Y VARIABLES LOCALES --- */
.contacto-page {
  --accent-orange: #ff6b35;
  --accent-orange-dark: #e55a2a;
  --accent-blue: #2a6f8f;
  --accent-blue-dark: #1e5a75;
  --cream: #faf8f5;
  --dark: #0d0d0d;
  --dark-secondary: #1a1a1a;
  --text-body: #5a5a5a;
  --text-light: #888888;
  --border-color: rgba(255, 255, 255, 0.08);
}

/* --- HERO FULLSCREEN DRAMÁTICO --- */
.contacto-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: subtleBreath 12s ease-in-out infinite alternate;
  filter: brightness(0.35) saturate(0.6);
}

@keyframes subtleBreath {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

/* Gradiente arquitectónico superpuesto */
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

/* Líneas arquitectónicas geométricas - Naranja y Azul */
.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.15;
}

.hero-lines .line {
  position: absolute;
}

.line-1 {
  top: 15%;
  left: 8%;
  width: 1px;
  height: 300px;
  background: var(--accent-orange);
  animation: lineFloat 6s ease-in-out infinite;
}

.line-2 {
  top: 25%;
  right: 12%;
  width: 300px;
  height: 1px;
  background: var(--accent-blue);
  animation: lineFloat 8s ease-in-out infinite reverse;
}

.line-3 {
  bottom: 20%;
  left: 15%;
  width: 1px;
  height: 200px;
  background: var(--accent-orange);
  animation: lineFloat 7s ease-in-out infinite 1s;
}

.line-4 {
  bottom: 35%;
  right: 8%;
  width: 250px;
  height: 1px;
  background: var(--accent-blue);
  animation: lineFloat 9s ease-in-out infinite 0.5s;
}

@keyframes lineFloat {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Contenido del hero */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 20vh;
  padding-bottom: 8vh;
}

.hero-text-stack {
  animation: revealUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

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

.hero-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.title-line {
  display: block;
}

.title-line.accent {
  /* font-style: italic; */
  color: var(--accent-orange);
  font-weight: 500;
}

.hero-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.hero-separator span {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.hero-separator i {
  font-size: 0.3rem;
  color: var(--accent-orange);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto;
}

.hero-subtitle em {
  /* font-style: italic; */
  color: rgba(255,255,255,0.9);
}

/* Indicador de scroll */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.6;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-bar {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-progress {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-orange);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* --- SECCIÓN DE CONTENIDO --- */
.contacto-content-section {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
}

.contacto-content-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent-orange));
}

.section-intro {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.intro-tag {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.intro-text {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

/* --- LAYOUT DE DOS COLUMNAS --- */
.contacto-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* --- SIDEBAR DE DATOS --- */
.contacto-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
  align-self: start;
}

.datos-card {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.datos-card:last-child {
  border-bottom: none;
}

.datos-card:hover {
  padding-left: 0.8rem;
}

.datos-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.datos-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  /* font-style: italic; */
  color: var(--accent-orange);
  opacity: 0.7;
}

.datos-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
}

.datos-address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.datos-link {
  font-size: 0.8rem;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  letter-spacing: 0.5px;
}

.datos-link:hover {
  gap: 0.75rem;
}

.datos-phone,
.datos-email {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.datos-phone:hover,
.datos-email:hover {
  color: var(--accent-orange);
}

.datos-schedule {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.datos-socials {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
}

.social-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}

.social-btn i {
  font-size: 0.9rem;
}

/* --- FORMULARIO PREMIUM --- */
.form-card-premium {
  background: #fff;
  border-radius: 2px;
  padding: 4rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
  position: relative;
}

.form-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue), var(--accent-orange));
}

.form-card-header {
  margin-bottom: 3rem;
}

.form-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-orange);
  margin-bottom: 1.5rem;
}

.form-card-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.form-card-header p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* --- CAMPOS DEL FORMULARIO --- */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all 0.3s ease;
  outline: none;
  border-radius: 0;
}

.input-group textarea {
  resize: vertical;
  min-height: 100px;
}

.input-group label {
  position: absolute;
  top: 0.9rem;
  left: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 300;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  font-size: 0.7rem;
  color: var(--accent-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-group select {
  cursor: pointer;
  appearance: none;
  color: var(--text-body);
  padding-right: 2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23888' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right center;
}

.select-group label {
  position: absolute;
  top: -0.6rem;
  left: 0;
  font-size: 0.7rem;
  color: var(--accent-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  transition: width 0.4s ease;
}

.input-group input:focus ~ .input-border,
.input-group select:focus ~ .input-border,
.input-group textarea:focus ~ .input-border {
  width: 100%;
}

/* Estados de error */
.input-group input.error,
.input-group select.error,
.input-group textarea.error {
  border-bottom-color: #c0392b;
}

.input-group input.error ~ .input-border,
.input-group select.error ~ .input-border,
.input-group textarea.error ~ .input-border {
  background: #c0392b;
  width: 100%;
}

/* Contador de caracteres */
.char-count {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.char-count.warning { color: var(--accent-orange); }
.char-count.danger { color: #c0392b; }

/* Mensajes de error */
.error-msg {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-size: 0.7rem;
  color: #c0392b;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- CHECKBOX PREMIUM --- */
.checkbox-premium {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-visual {
  min-width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.checkbox-visual i {
  font-size: 0.6rem;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.checkbox-label input:checked ~ .checkbox-visual {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.checkbox-label input:checked ~ .checkbox-visual i {
  opacity: 1;
  transform: scale(1);
}

.checkbox-text {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 300;
}

.text-link {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.text-link:hover {
  border-bottom-color: var(--accent-blue);
}

/* --- BOTÓN DE ENVÍO --- */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--dark);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 1rem;
}

.submit-btn .btn-icon {
  display: inline-block;
  margin-left: 1rem;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
  padding-right: 3rem;
  gap: 1.5rem;
}

.submit-btn:hover .btn-icon {
  transform: translateX(8px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-btn .btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* --- MENSAJE DE ÉXITO --- */
.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: revealUp 0.6s ease;
}

.success-message.visible {
  display: block;
}

.success-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.success-message h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.success-note {
  /* font-style: italic; */
  color: var(--accent-orange) !important;
}

/* --- MAPA --- */
.mapa-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.mapa-frame {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(0.9) brightness(0.8);
  transition: filter 0.6s ease;
}

.mapa-frame:hover {
  filter: grayscale(0%) contrast(1) brightness(0.95);
}

.mapa-label {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--accent-orange);
}

/* ============================================
   FOOTER PREMIUM ARQUITECTÓNICO
   ============================================ */

.footer-premium {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Borde superior con acentos corporativos */
.footer-border-top {
  display: flex;
  height: 3px;
}

.border-accent {
  flex: 1;
}

.border-orange {
  background: var(--accent-orange);
}

.border-blue {
  background: var(--accent-blue);
}

/* Patrón geométrico de fondo */
.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at bottom left, rgba(42, 111, 143, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 3rem 0;
  position: relative;
  z-index: 1;
}

/* --- GRID PRINCIPAL --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- COLUMNAS --- */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* --- MARCA --- */
.footer-logo-section {
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.footer-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Certificaciones */
.footer-certifications {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  font-weight: 500;
}

.cert-item i {
  color: var(--accent-blue);
  font-size: 0.9rem;
}

/* --- HEADINGS --- */
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.4s ease;
}

.footer-col:hover .footer-heading::after {
  width: 35px;
}

/* --- LINKS DE NAVEGACIÓN --- */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 12px;
}

.footer-links li a:hover::before {
  width: 100%;
}

/* --- LISTA DE CONTACTO --- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  font-weight: 300;
}

.footer-contact-list li i {
  color: var(--accent-orange);
  font-size: 0.9rem;
  margin-top: 3px;
  min-width: 14px;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--accent-orange);
}

/* --- REDES SOCIALES --- */
.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  font-size: 0.9rem;
}

.social-icon-link:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* --- BARRA LEGAL --- */
.footer-legal-bar {
  padding: 2.5rem 0;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
}

.footer-legal-links a:hover {
  color: var(--accent-orange);
}

.legal-divider {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.footer-copyright sup {
  font-size: 0.55rem;
}

.footer-madeby {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 2px;
  /* font-style: italic; */
  font-family: 'Outfit', sans-serif;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
  
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 4rem 2rem 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }
  
  .footer-brand-col {
    grid-column: auto;
  }
  
  .footer-heading {
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-divider {
    display: none;
  }
  
  .footer-legal-links a {
    padding: 0.4rem 0;
    font-size: 0.8rem;
  }
  
  .footer-certifications {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 3rem 1.5rem 0;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-social-links {
    gap: 0.5rem;
  }
  
  .social-icon-link {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .contacto-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contacto-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .datos-card {
    border-bottom: none;
    border-right: 1px solid rgba(0,0,0,0.06);
    padding-right: 2rem;
  }
  
  .datos-card:nth-child(even) {
    border-right: none;
    padding-left: 2rem;
    padding-right: 0;
  }
  
  .form-card-premium {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .contacto-hero {
    height: 90vh;
    min-height: 600px;
  }
  
  .hero-title-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .contacto-content-section {
    padding: 5rem 0;
  }
  
  .intro-title {
    font-size: 2.2rem;
  }
  
  .contacto-sidebar {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .datos-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .form-card-premium {
    padding: 2rem;
  }
  
  .form-row-double {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mapa-section {
    height: 350px;
  }
  
  .mapa-label {
    left: 1.5rem;
    bottom: 1.5rem;
    font-size: 0.65rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-overline {
    letter-spacing: 4px;
    font-size: 0.65rem;
  }
  
  .hero-separator span {
    width: 30px;
  }
  
  .intro-title {
    font-size: 1.8rem;
  }
  
  .form-card-header h3 {
    font-size: 1.4rem;
  }
  
  .form-card-premium {
    padding: 1.5rem;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contacto-layout {
    padding: 0 1.5rem;
  }
}