/* Contacto Page Specific Styles */
:root {
  --bsl-red: #e63946;
  --bsl-red-dark: #c92f3a;
  --bsl-red-ghost: #fee2e2;
  --bsl-black: #0b0f14;
  --bsl-black-2: #0f1720;
  --bsl-text: #0f172a;
  --bsl-muted: #64748b;
  --bsl-border: #e5e7eb;
  --white: #ffffff;
}

/* Hero Contact */
.hero-contact {
  background: radial-gradient(80% 120% at 10% 10%, #1a1f28 0%, var(--bsl-black-2) 60%, var(--bsl-black) 100%);
  color: #fff;
  padding: 84px 0 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-contact h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: .2px;
  margin: 0 0 10px;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.hero-contact p {
  margin: 0 auto 20px;
  max-width: 820px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  opacity: .96;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn-accent {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  background: var(--bsl-red);
  color: #fff;
  border: 1.5px solid var(--bsl-red);
  box-shadow: 0 8px 24px rgba(230, 57, 70, .35);
}

.btn-accent:hover {
  background: var(--bsl-red-dark);
  border-color: var(--bsl-red-dark);
  box-shadow: 0 10px 28px rgba(230, 57, 70, .45);
}

.btn-accent:active {
  transform: translateY(1px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.badge {
  background: #171b22;
  color: #e5e7eb;
  border: 1px solid #232a34;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
}

/* Contact Section */
.contact-section {
  padding: 64px 0 84px;
  background: #f9fafb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: start;
}

/* Form Card */
.form-card {
  background: #fff;
  border: 1px solid #e5eaf4;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 20px 40px -10px rgba(0, 0, 0, .08);
}

.form-card h2 {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--bsl-text);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-family: 'Outfit', sans-serif;
}

.form-lead {
  color: var(--bsl-muted);
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Form Elements */
.contact-form label {
  display: block;
  font-weight: 600;
  color: #334155;
  margin: 16px 0 8px;
  font-size: .95rem;
}

.contact-form label[required]::after {
  content: " *";
  color: var(--bsl-red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bsl-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .12);
  background: #fffafa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.helper-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.helper-row .hint {
  color: #94a3b8;
  font-size: .9rem;
}

.submit-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-dark {
  background: #111827;
  color: #fff;
  border: 1.5px solid #111827;
  cursor: pointer;
  font-size: 1rem;
  padding: 14px 24px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, .2);
  transition: background-color .2s, box-shadow .2s;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.btn-dark:hover {
  background: #1f2937;
  border-color: #1f2937;
  box-shadow: 0 6px 16px rgba(17, 24, 39, .3);
}

.btn-dark:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.btn-light {
  background: #fff;
  color: #111827;
  border: 1.5px solid #e2e8f0;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s ease;
}

.btn-light:hover {
  background: #fff5f5;
  border-color: #fca5a5;
  color: #7f1d1d;
}

/* Contact Aside */
.contact-aside {
  background: linear-gradient(180deg, var(--bsl-black-2) 0%, var(--bsl-black) 100%);
  color: #f3f4f6;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #232a34;
  box-shadow: 0 12px 36px rgba(11, 15, 20, 0.35);
}

.contact-aside h3 {
  margin: 4px 0 16px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

.aside-item {
  margin: 14px 0;
  line-height: 1.6;
}

.aside-item strong {
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.aside-item a {
  color: #fecaca;
  text-decoration: none;
  transition: color .2s ease;
}

.aside-item a:hover {
  color: #ffffff;
}

.contact-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip {
  background: #1f2937;
  border: 1px solid #374151;
  color: #e5e7eb;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--bsl-red);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid var(--bsl-red-dark);
  transition: transform .1s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-wa:hover {
  transform: translateY(-1px);
  background: var(--bsl-red-dark);
  box-shadow: 0 6px 20px rgba(230, 57, 70, .35);
}

.divider {
  height: 1px;
  background: #2a303a;
  margin: 20px 0;
}

/* Form Messages */
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  display: none;
  font-size: .95rem;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-contact {
    padding: 64px 0 48px;
  }
}

@media (max-width: 768px) {
  .form-card {
    padding: 28px 24px;
  }
  
  .contact-aside {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .helper-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .hero-contact h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 48px 0 64px;
  }
  
  .form-card {
    padding: 24px 20px;
  }
  
  .btn-dark,
  .btn-light,
  .btn-wa {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .contact-chips {
    justify-content: center;
  }
}