/* =============================================
   SADALLA ENGENHARIA — SITE INSTITUCIONAL
   ============================================= */

/* === FONTS === */
@font-face { font-family:'GeomGraphic'; src:url('assets/fonts/geom-regular.otf') format('opentype'); font-weight:400; font-display:swap; }
@font-face { font-family:'GeomGraphic'; src:url('assets/fonts/geom-semibold.otf') format('opentype'); font-weight:600; font-display:swap; }
@font-face { font-family:'GeomGraphic'; src:url('assets/fonts/geom-bold.otf') format('opentype'); font-weight:700; font-display:swap; }
@font-face { font-family:'Campton'; src:url('assets/fonts/campton-book.otf') format('opentype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Campton'; src:url('assets/fonts/campton-semibold.otf') format('opentype'); font-weight:600; font-display:swap; }
@font-face { font-family:'Campton'; src:url('assets/fonts/campton-bold.otf') format('opentype'); font-weight:700; font-display:swap; }

/* === TOKENS === */
:root {
  --l1: #E67425;          /* Laranja primária */
  --l2: #F0923C;          /* Laranja hover */
  --l3: #A33215;          /* Laranja escura */
  --az: #0C1933;          /* Azul naval */
  --br: #FFFFFF;          /* Branco */
  --geom: 'GeomGraphic', sans-serif;
  --camp: 'Campton', 'Helvetica Neue', sans-serif;
}

/* === ACCESSIBILITY === */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  /* Visual styling for when focused */
  background: var(--l1);
  color: #fff;
  font-family: var(--geom);
  font-weight: 700;
  font-size: 14px;
  z-index: 10000;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-radius: 0 0 8px 8px;
  color: #fff;
}

/* Focus states (keyboard navigation) */
*:focus-visible {
  outline: 3px solid var(--l1);
  outline-offset: 2px;
}
.btn-hero:focus-visible, .btn-laranja:focus-visible, .btn-azul:focus-visible,
.btn-agendar:focus-visible, .float-wpp:focus-visible, .float-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .carousel { transition: none !important; }
}

/* === RESET & BASE === */
html { overflow-x: hidden; }
body {
  font-family: var(--camp);
  font-weight: 400;
  color: var(--az);
  background: var(--br);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--geom); font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
h4, h5, h6 { font-family: var(--geom); font-weight: 600; letter-spacing: 0; line-height: 1.2; }

/* === NAVBAR === */
.navbar-sadalla {
  padding: 10px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
  background: transparent;
}
.navbar-sadalla.scrolled {
  background: var(--az);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar-sadalla .navbar-brand img { height: 40px; width: auto; }
.navbar-sadalla .nav-link {
  font-family: var(--geom) !important;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: color 0.2s;
}
.navbar-sadalla .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px; right: 18px;
  height: 2px;
  background: var(--l1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-sadalla .nav-link:hover { color: var(--l1) !important; }
.navbar-sadalla .nav-link:hover::after { transform: scaleX(1); }

/* === DROPDOWNS === */
.dropdown-sadalla {
  background: var(--az);
  border: none;
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  min-width: 200px;
}
.dropdown-sadalla .dropdown-item {
  font-family: var(--geom);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  transition: color 0.2s, background 0.2s;
}
.dropdown-sadalla .dropdown-item:hover {
  color: var(--l1);
  background: rgba(230,116,37,0.08);
}
.navbar-sadalla .dropdown-toggle::after {
  font-size: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
  .navbar-nav .dropdown-toggle::after { transition: transform 0.2s; }
  .navbar-nav .dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
}

/* === HERO CAROUSEL === */
.hero-slide {
  min-height: 660px;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,25,51,0.85), rgba(12,25,51,0.4));
  pointer-events: none;
}
.hero-slide .container { position: relative; z-index: 2; }

.hero-label {
  font-family: var(--geom);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--l2);
  margin-bottom: 20px;
}
.hero-slide h1, .hero-slide h2 { font-size: 3.4rem; max-width: 860px; }
.hero-sub {
  font-family: var(--camp);
  font-size: 1.1rem;
  margin-top: 22px;
  max-width: 560px;
  color: rgba(255,255,255,0.88);
}

.btn-hero {
  font-family: var(--geom);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
}
.btn-hero-primary { background: var(--l1); color: #fff; border: none; }
.btn-hero-primary:hover { background: var(--l2); color: #fff; }
.btn-hero-outline { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

.carousel-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  transition: background 0.2s;
}
.carousel-arrow:hover { background: var(--l1); }
.carousel-control-prev,
.carousel-control-next { width: 60px; opacity: 1; }
.carousel-indicators { margin-bottom: 20px; }
.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 4px;
  transition: background 0.2s;
}
.carousel-indicators button.active {
  background: var(--l1);
  width: 28px;
  border-radius: 5px;
}

/* === LEAD STRIP === */
.lead-strip {
  background: var(--l1);
  padding: 16px 0 10px;
}
.lead-strip-form {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lead-strip-label {
  font-family: var(--geom);
  font-weight: 700;
  font-size: 13px;
  color: var(--az);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.lead-strip-input {
  flex: 1;
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--camp);
  font-size: 13px;
  color: var(--az);
  outline: none;
}
.lead-strip-input:focus { box-shadow: 0 0 0 2px var(--az); }
.lead-strip-input::placeholder { color: rgba(12,25,51,0.35); }

select.lead-strip-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230C1933' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px !important;
}

.lead-strip-btn {
  font-family: var(--geom);
  font-weight: 700;
  font-size: 13px;
  background: var(--az);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.lead-strip-btn:hover { background: #142040; }
.lead-strip-privacy {
  font-family: var(--camp);
  font-size: 10px;
  color: rgba(12,25,51,0.5);
  margin-top: 6px;
}
.lead-strip-privacy a { color: var(--az); text-decoration: underline; }

/* === SECTIONS === */
.section-label {
  font-family: var(--geom);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--l1);
}
.section-title { font-size: 2.2rem; margin-top: 10px; }
.section-sub {
  font-family: var(--camp);
  font-size: 15px;
  color: rgba(12,25,51,0.65);
  margin-top: 12px;
  max-width: 580px;
}

/* === MODEL CARDS === */
.model-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(12,25,51,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.model-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.model-card-img { height: 220px; background-size: cover; background-position: center; }
.model-metric { font-family: var(--geom); font-weight: 700; font-size: 1.5rem; color: var(--l1); }
.model-name { font-family: var(--geom); font-weight: 600; font-size: 14px; margin-top: 5px; }
.model-desc { font-family: var(--camp); font-size: 13px; color: rgba(12,25,51,0.6); margin-top: 8px; }

/* === STEPS === */
.step-card {
  padding: 28px;
  border-left: 3px solid var(--l1);
  height: 100%;
  transition: background 0.2s;
}
.step-card:hover { background: rgba(230,116,37,0.04); }
.step-num { font-family: var(--geom); font-weight: 700; font-size: 2rem; color: var(--l1); }
.step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(230,116,37,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--l1); font-size: 22px;
  margin-bottom: 16px;
}
.step-body { font-family: var(--camp); font-size: 14px; color: rgba(12,25,51,0.65); margin-top: 10px; }

/* === PROOF === */
.proof { background: var(--az); }
.stat-num { font-family: var(--geom); font-weight: 700; font-size: 3rem; color: var(--l1); }
.stat-label { font-family: var(--camp); font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* === CASA MODELO === */
.cm-img { height: 400px; border-radius: 12px; background-size: cover; background-position: center; }

/* === FAQ === */
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  border: none;
  background: none;
  font-family: var(--geom);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--az);
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(12,25,51,0.08);
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--l1); }
.faq-btn i { color: var(--l1); transition: transform 0.3s; font-size: 16px; }
.faq-btn[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { font-family: var(--camp); font-size: 15px; color: rgba(12,25,51,0.65); padding: 8px 0 20px; }

/* === CTA FINAL === */
.cta-final { background: var(--l1); }
.cta-body {
  font-family: var(--camp);
  font-size: 1.05rem;
  color: rgba(12,25,51,0.85);
  max-width: 520px;
  margin: 14px auto 0;
}

/* === BUTTONS === */
.btn-laranja {
  font-family: var(--geom); font-weight: 700;
  background: var(--l1); color: #fff;
  border: none; padding: 13px 26px; border-radius: 8px; font-size: 14px;
}
.btn-laranja:hover { background: var(--l2); color: #fff; }

.btn-azul {
  font-family: var(--geom); font-weight: 700;
  background: var(--az); color: #fff;
  border: none; padding: 15px 32px; border-radius: 8px; font-size: 15px;
}
.btn-azul:hover { background: #142040; color: #fff; }

/* === FLOATING BUTTONS === */
.float-buttons {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--geom);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  height: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.float-btn-dark { background: var(--az); color: #fff; }
.float-btn-dark:hover { color: #fff; }
.float-btn-light { background: #fff; color: var(--az); }
.float-btn-light:hover { color: var(--az); }

.float-wpp {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.float-wpp:hover { transform: translateY(-2px); color: #fff; }

/* === FOOTER === */
.footer-main { background: #0C1933; padding: 60px 0 40px; }
.footer-heading {
  font-family: var(--geom);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l1);
  margin-bottom: 18px;
}
.footer-link {
  font-family: var(--camp);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--l1); }
.footer-tagline {
  font-family: var(--camp);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.6;
  margin: 0 auto;
}
.footer-social {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover { color: var(--l1); border-color: var(--l1); }

.footer-contact {
  background: #0C1933;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-contact-item {
  font-family: var(--camp);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--l1); margin-right: 6px; }

.footer-legal {
  background: #0C1933;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-legal-text {
  font-family: var(--camp);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--az);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  z-index: 9999;
  font-family: var(--camp);
  font-size: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner a { color: var(--l1); text-decoration: underline; }
.cookie-banner .btn-cookie {
  font-family: var(--geom);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept { background: var(--l1); color: #fff; }
.cookie-accept:hover { background: var(--l2); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3) !important; }
.cookie-reject:hover { color: #fff; border-color: rgba(255,255,255,0.5) !important; }

/* === VALIDATION ERRORS === */
.input-error {
  border: 2px solid #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231,76,60,0.15) !important;
}
.consent-error {
  color: #e74c3c !important;
}
.consent-error .form-check-input {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
}

/* === SCHEDULING MODAL === */
.modal-agendar .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}
.modal-agendar .modal-header {
  background: var(--az);
  color: #fff;
  border: none;
  padding: 20px 24px;
}
.modal-agendar .modal-title {
  font-family: var(--geom);
  font-weight: 700;
  font-size: 18px;
}
.modal-agendar .btn-close { filter: invert(1); }
.modal-agendar .modal-body { padding: 24px; }
.modal-agendar label {
  font-family: var(--geom);
  font-weight: 600;
  font-size: 13px;
  color: var(--az);
  margin-bottom: 6px;
}
.modal-agendar .form-control {
  font-family: var(--camp);
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(12,25,51,0.15);
  padding: 12px 14px;
}
.modal-agendar .form-control:focus {
  border-color: var(--l1);
  box-shadow: 0 0 0 3px rgba(230,116,37,0.15);
}

/* Date/time picker */
.date-picker { display: flex; gap: 8px; flex-wrap: wrap; }
.date-option, .time-option {
  font-family: var(--geom);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(12,25,51,0.12);
  background: #fff;
  color: var(--az);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.date-option:hover, .time-option:hover {
  border-color: var(--l1);
  color: var(--l1);
}
.date-option.selected, .time-option.selected {
  background: var(--az);
  color: #fff;
  border-color: var(--az);
}
.date-option .day-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.date-option .day-num {
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.btn-agendar {
  font-family: var(--geom);
  font-weight: 700;
  background: var(--l1);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  transition: background 0.2s;
}
.btn-agendar:hover { background: var(--l2); }
.btn-voltar {
  font-family: var(--geom);
  font-weight: 700;
  background: #fff;
  color: var(--az);
  border: 1.5px solid rgba(12,25,51,0.15);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  transition: all 0.2s;
}
.btn-voltar:hover { border-color: var(--az); }

/* === LEAD STRIP PHONE TOGGLE (desktop vs mobile) === */
.lead-phone-mobile { display: none; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  /* Lead strip: hide separate DDD+WhatsApp, show combined field */
  .lead-phone-web { display: none !important; }
  .lead-phone-mobile { display: block !important; flex: 1 !important; }

  /* Navbar: always solid on mobile */
  .navbar-sadalla {
    background: var(--az) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25) !important;
  }

  .hero-slide h1, .hero-slide h2 { font-size: 2.2rem; }
  .hero-slide { min-height: 500px; padding-top: 100px; }
  .carousel-control-prev,
  .carousel-control-next { z-index: 10; }
  .section-title { font-size: 1.7rem; }

  /* Lead strip: compact mobile layout */
  .lead-strip-form { flex-wrap: wrap; gap: 8px; }
  .lead-strip-label { width: 100%; text-align: center; font-size: 12px; }
  .lead-strip-input { min-width: 0; font-size: 12px; padding: 9px 12px; }
  .lead-strip img[alt="WhatsApp"] { display: none; }
  .lead-strip-privacy { text-align: center; }

  /* Float buttons: only WhatsApp on mobile */
  .float-buttons .float-btn { display: none; }
  .float-buttons { bottom: 16px; right: 16px; }
  .float-wpp { width: 52px; height: 52px; font-size: 26px; }

  /* Proof social: stacked, vertical lines become horizontal */
  .proof .d-flex { flex-direction: column !important; align-items: center !important; }
  .proof .d-flex > div[style*="width:1px"] { width: 80px !important; height: 1px !important; align-self: center !important; }
  .proof .d-flex > div[style*="padding"] { padding: 16px 20px !important; }
  .stat-num { font-size: 2.4rem; }

  .cm-img { height: 280px; margin-top: 30px; }

  /* Cookie banner: compact mobile */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 12px;
  }
  .cookie-banner span { font-size: 12px; }
}

@media (max-width: 575px) {
  .hero-slide h1, .hero-slide h2 { font-size: 1.6rem; }
  .hero-slide { min-height: 440px; padding-top: 90px; }
  .hero-label { font-size: 11px; }
  .hero-sub { font-size: 0.9rem; }
  .btn-hero { padding: 12px 20px; font-size: 13px; }

  /* Lead strip: full-width button */
  .lead-strip-form { gap: 8px; }
  .lead-strip-btn { width: 100%; justify-content: center; }

  .section-title { font-size: 1.4rem; }
  .model-card-img { height: 180px; }
}

/* =============================================
   SUBPAGES
   ============================================= */

/* === NAVBAR SOLID (subpages without hero image) === */
.navbar-sadalla.navbar-subpage {
  background: var(--az);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* === PAGE HERO === */
.page-hero {
  background: var(--az);
  padding: 140px 0 50px;
  color: #fff;
}
.page-hero h1 { font-size: 2.4rem; margin-bottom: 0; }
.page-hero .page-sub {
  font-family: var(--camp);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 560px;
}
.page-hero .breadcrumb-nav {
  font-family: var(--camp);
  font-size: 12px;
  margin-bottom: 16px;
}
.page-hero .breadcrumb-nav a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-hero .breadcrumb-nav a:hover { color: var(--l1); }
.page-hero .breadcrumb-nav .sep { color: rgba(255,255,255,0.25); margin: 0 8px; }
.page-hero .breadcrumb-nav .current { color: rgba(255,255,255,0.85); }

/* === LEGAL CONTENT (Código de Conduta, Política de Privacidade) === */
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 14px; padding-top: 20px; border-top: 1px solid rgba(12,25,51,0.08); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 10px; }
.legal-content p, .legal-content li { font-family: var(--camp); font-size: 15px; color: rgba(12,25,51,0.72); line-height: 1.75; }
.legal-content p { margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-family: var(--camp); font-size: 14px; }
.legal-content th { background: rgba(12,25,51,0.04); font-weight: 600; color: var(--az); text-align: left; padding: 12px 16px; border: 1px solid rgba(12,25,51,0.1); }
.legal-content td { padding: 12px 16px; border: 1px solid rgba(12,25,51,0.08); color: rgba(12,25,51,0.68); }
.legal-content blockquote { border-left: 3px solid var(--l1); padding: 14px 20px; margin: 20px 0; background: rgba(230,116,37,0.04); border-radius: 0 8px 8px 0; }
.legal-content blockquote p { margin-bottom: 0; }
.legal-content strong { color: var(--az); }
.legal-content .version-badge {
  font-family: var(--geom); font-size: 12px; font-weight: 600;
  background: rgba(230,116,37,0.1); color: var(--l1);
  padding: 6px 14px; border-radius: 20px; display: inline-block; margin-bottom: 20px;
}
.legal-content .toc { margin-bottom: 40px; }
.legal-content .toc a { font-family: var(--camp); font-size: 14px; color: var(--l1); text-decoration: none; display: block; padding: 6px 0; }
.legal-content .toc a:hover { color: var(--l3); }

/* Tabs (Ética page) */
.nav-tabs-sadalla { border: none; gap: 8px; margin-bottom: 0; }
.nav-tabs-sadalla .nav-link {
  font-family: var(--geom); font-weight: 700; font-size: 14px;
  color: rgba(12,25,51,0.45); border: 1.5px solid rgba(12,25,51,0.12);
  border-radius: 8px; padding: 14px 28px; transition: all 0.2s;
}
.nav-tabs-sadalla .nav-link:hover { color: var(--l1); border-color: var(--l1); background: transparent; }
.nav-tabs-sadalla .nav-link.active { background: var(--az); color: #fff; border-color: var(--az); }

/* === FAQ FULL PAGE === */
.faq-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 20px 0; border-bottom: 1px solid rgba(12,25,51,0.08);
  margin-bottom: 10px;
}
.faq-nav a {
  font-family: var(--geom); font-weight: 600; font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(12,25,51,0.5); text-decoration: none;
  padding: 8px 16px; border-radius: 20px;
  border: 1.5px solid rgba(12,25,51,0.1);
  transition: all 0.2s; white-space: nowrap;
}
.faq-nav a:hover { color: var(--l1); border-color: var(--l1); }

.faq-category {
  font-family: var(--geom); font-weight: 700; font-size: 1.1rem; color: var(--az);
  margin-top: 48px; margin-bottom: 4px; padding: 16px 0 12px 18px;
  border-left: 3px solid var(--l1);
  display: flex; align-items: center; gap: 12px;
}
.faq-category:first-child { margin-top: 0; }
.faq-category-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(230,116,37,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--l1); font-size: 15px; flex-shrink: 0;
}

.faq-group { margin-bottom: 8px; }
.faq-group .faq-btn { padding: 18px 20px; border-bottom: none; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.faq-group .faq-btn:hover { background: rgba(12,25,51,0.03); }
.faq-group .faq-btn[aria-expanded="true"] { background: rgba(230,116,37,0.04); color: var(--l1); }
.faq-group .faq-answer { padding: 0 20px 22px 20px; border-bottom: 1px solid rgba(12,25,51,0.06); margin: 0 0 4px; }
.faq-table { width: 100%; margin: 14px 0; border-collapse: collapse; font-family: var(--camp); font-size: 14px; }
.faq-table th { background: var(--az); color: #fff; font-family: var(--geom); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 16px; text-align: left; }
.faq-table td { padding: 10px 16px; border-bottom: 1px solid rgba(12,25,51,0.08); color: rgba(12,25,51,0.75); }
.faq-table tr:last-child td { border-bottom: none; }
.faq-table tr:nth-child(even) td { background: rgba(12,25,51,0.02); }

/* === LOCATION CARDS === */
.location-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(12,25,51,0.08); height: 100%;
  transition: box-shadow 0.3s;
}
.location-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.location-card-body { padding: 28px; }
.location-card-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.location-card-body .location-type {
  font-family: var(--geom); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--l1); margin-bottom: 16px;
}
.location-card-body p { font-family: var(--camp); font-size: 14px; color: rgba(12,25,51,0.65); margin-bottom: 8px; line-height: 1.6; }
.location-map { width: 100%; height: 220px; border: none; border-top: 1px solid rgba(12,25,51,0.08); }

/* Contact grid */
.contact-grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px; }
.contact-grid-item { display: flex; align-items: flex-start; gap: 14px; max-width: 100%; }
.contact-grid-item > div:last-child { min-width: 0; }
.contact-grid-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(230,116,37,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--l1); font-size: 18px; flex-shrink: 0;
}
.contact-grid-label { font-family: var(--geom); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--l1); margin-bottom: 4px; }
.contact-grid-value { font-family: var(--camp); font-size: 14px; color: rgba(12,25,51,0.75); overflow-wrap: break-word; word-break: break-word; }
.contact-grid-value a { color: var(--az); text-decoration: none; }
.contact-grid-value a:hover { color: var(--l1); }

/* === SUBPAGE RESPONSIVE === */
@media (max-width: 991px) {
  .page-hero { padding: 120px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }
  .nav-tabs-sadalla .nav-link { padding: 12px 20px; font-size: 13px; }
  .legal-content table { display: block; overflow-x: auto; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-grid-item:nth-child(n+3) { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .page-hero { padding: 100px 0 32px; }
  .page-hero h1 { font-size: 1.5rem; }
  .nav-tabs-sadalla { flex-direction: column; }
  .nav-tabs-sadalla .nav-link { text-align: center; }
  .legal-content h2 { font-size: 1.15rem; }
  .location-map { height: 180px; }
  .contact-grid { flex-direction: column; gap: 16px; }
  .contact-grid-icon { width: 32px; height: 32px; font-size: 14px; }
  .contact-grid-item { gap: 10px; }
}
