/* ── Layout ── */
.contacto-section {
  padding: 60px 20px 0;
}

.faq-section {
  padding: 60px 20px 80px;
}

.contacto-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Page heading ── */
.contacto-heading-block {
  text-align: center;
  padding: 10px 0 20px;
}

.contacto-title {
  font-size: 48px;
  font-weight: 800;
  color: #0b1c2d;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.contacto-subtitle {
  font-size: 18px;
  color: #475569;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contacto-title { font-size: 32px; letter-spacing: -0.5px; }
  .contacto-subtitle { font-size: 16px; }
}

/* ── Contact wrapper ── */
.mh-contact-wrapper {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 40px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Media / video side */
.mh-contact-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  max-width: 380px;
}

.mh-contact-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Video */
.mh-contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(11, 28, 45, 0.15);
  display: block;
}

/* Form card */
.mh-contact-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 40px 50px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  flex-shrink: 0;
}

.mh-contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.mh-contact-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 5px 0;
}

.mh-contact-header p {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 15px;
  color: #333333;
  margin: 0;
}

.contact-form-group {
  margin-bottom: 15px;
}

.contact-label {
  display: block;
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 6px;
  margin-left: 4px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background-color: #e2e8f0;
  font-family: inherit;
  font-size: 14px;
  color: #0b1c2d;
  box-sizing: border-box;
  outline: none;
  transition: background-color 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  background-color: #cbd5e1;
}

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

.mh-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.contact-btn {
  background-color: #6a8bff;
  color: #ffffff;
  border: none;
  padding: 8px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-btn:hover {
  background-color: #4a6fff;
  transform: translateY(-1px);
}

.contact-btn:disabled {
  background-color: #64748b;
  cursor: not-allowed;
  transform: none;
}

.contact-msg {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.contact-msg.is-success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
}

.contact-msg.is-error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
}

@media (max-width: 900px) {
  .mh-contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .mh-contact-media {
    max-width: 100%;
    width: 100%;
  }
  .mh-contact-media-placeholder {
    max-width: 260px;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .mh-contact-media { display: none; }
  .mh-contact-card { padding: 30px 25px; }
}

/* ── FAQ section ── */
.faq-heading-block {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1c2d;
  margin: 0;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .faq-section-title { font-size: 26px; }
}

.faq-wrapper {
  font-family: 'Inter', system-ui, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  border-bottom: 2px solid rgba(43, 124, 255, 0.2);
  margin-bottom: 10px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0b1c2d;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: #2b7cff;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 20px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  fill: #2b7cff;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer-content {
  padding-bottom: 20px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq-question { font-size: 15px; padding: 16px 0; }
}
