/* Subida sub-site styles — Navy/Gold palette, Inter font */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  background-color: #F6F6F4;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #111827;
}
p { color: #6B7280; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; color: #111827; }
a { font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1100px, 90%); margin: auto; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  height: 64px; gap: 16px;
}
.logo {
  font-weight: 700; text-decoration: none; color: #111827;
  display: flex; align-items: center; gap: 10px;
}
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; color: #111827; font-size: 15px; }
.nav-links a:hover { color: #0B2A5B; }
.nav-button {
  background: #0B2A5B; border: none; color: #fff;
  padding: 10px 20px; border-radius: 20px; white-space: nowrap;
  text-decoration: none; font-family: inherit; cursor: pointer;
  font-size: 15px;
}
.nav-button:hover { background: #09234d; transform: translateY(-1px); }
.burger {
  display: none; background: transparent; border: none;
  font-size: 22px; line-height: 1; padding: 8px 10px; border-radius: 10px;
  cursor: pointer;
}

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 55px);
  line-height: 1.1;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto;
}
.hero .accent { color: #C6A23A; }
.hero p {
  margin: 24px auto 0; color: #6B7280;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  max-width: 600px;
}
.trust-badges {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; margin-top: 32px;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #6B7280;
}
.badge svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Buttons */
.btn-primary {
  background: #0B2A5B; color: #fff;
  padding: 14px 28px; border-radius: 24px;
  text-decoration: none; display: inline-block;
  font-family: inherit; font-weight: 600; font-size: 16px;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: #09234d; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid #0B2A5B; outline-offset: 2px; }

.btn-gold {
  background: #C6A23A; color: #fff;
  padding: 14px 28px; border-radius: 24px;
  text-decoration: none; display: inline-block;
  font-family: inherit; font-weight: 600; font-size: 16px;
  transition: background .15s, transform .15s;
}
.btn-gold:hover { background: #b8952f; transform: translateY(-1px); }
.btn-gold:focus-visible { outline: 2px solid #C6A23A; outline-offset: 2px; }

/* Intro section */
.intro { padding: 60px 0; text-align: center; }
.intro h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
}
.intro p {
  margin: 16px auto 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
  max-width: 600px;
}

/* Feature sections */
.section-features { padding: 80px 0; }
.section-features.bg-white { background: #fff; }
.section-features h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  text-align: center; line-height: 1.15;
  margin-bottom: 12px;
}
.section-features .section-sub {
  text-align: center; font-size: clamp(14px, 1.6vw, 16px);
  color: #6B7280; margin-bottom: 48px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.features-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: #fff; padding: 32px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(0,0,0,0.04);
}
.section-features.bg-white .feature-card { background: #F6F6F4; border: none; }
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 48px; height: 48px; }
.feature-card h3 { font-size: 18px; font-weight: 600; }
.feature-card p { font-size: 15px; line-height: 1.55; }
.feature-illustration {
  width: 100%; min-height: 120px; border-radius: 12px;
  background: #F6F6F4; margin-top: 8px;
}
.section-features.bg-white .feature-illustration { background: #EEECEA; }

/* Trust section */
.trust-section {
  background: #0B2A5B; padding: 80px 0; color: #fff;
}
.trust-section h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  text-align: center; line-height: 1.15;
  color: #fff; margin-bottom: 12px;
}
.trust-section .section-sub {
  text-align: center; font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,0.7); margin-bottom: 48px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.08); padding: 28px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.trust-card .feature-icon svg { stroke: #C6A23A; }
.trust-card h3 { font-size: 17px; font-weight: 600; color: #fff; }
.trust-card p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); }

/* Pricing */
.pricing { padding: 80px 0; }
.pricing h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  text-align: center; line-height: 1.15;
  margin-bottom: 12px;
}
.pricing .section-sub {
  text-align: center; font-size: clamp(14px, 1.6vw, 16px);
  color: #6B7280; margin-bottom: 48px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: start;
}
.pricing-card {
  background: #fff; padding: 36px 32px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.pricing-card.featured {
  border: 2px solid #0B2A5B;
  position: relative;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #0B2A5B; color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 12px; white-space: nowrap;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; }
.pricing-price {
  font-size: clamp(36px, 4vw, 48px); font-weight: 800; color: #0B2A5B;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: #6B7280; }
.pricing-features {
  list-style: none; padding: 0; text-align: left;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li {
  font-size: 15px; color: #6B7280; line-height: 1.45;
  padding-left: 24px; position: relative;
}
.pricing-features li::before {
  content: "\2713"; position: absolute; left: 0;
  color: #C6A23A; font-weight: 700;
}
.pricing-card .btn-primary { margin-top: 8px; text-align: center; }

/* Footer CTA */
.footer-cta {
  padding: 60px 0; text-align: center;
}
.footer-cta-box {
  background: #0B2A5B; color: #fff;
  padding: 56px 32px; border-radius: 16px;
  max-width: 800px; margin: 0 auto;
}
.footer-cta-box h2 {
  font-size: clamp(22px, 3vw, 35px);
  color: #fff; margin-bottom: 16px;
}
.footer-cta-box p {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.8); max-width: 600px;
  margin: 0 auto 24px; line-height: 1.55;
}

/* Page content (legal pages) */
.page-content { padding: 80px 0; }
.page-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.page-subtitle {
  color: #6B7280;
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 48px;
}
.page-content h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  margin-top: 40px;
  margin-bottom: 12px;
  color: #111827;
  text-align: left;
}
.page-content p {
  margin: 12px 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}
.page-content ul { padding-left: 24px; margin: 12px 0; }
.page-content li {
  margin: 8px 0; color: #6B7280;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}
.page-content strong { color: #333; }
.page-content a { color: #0B2A5B; }
.page-content a:hover { color: #C6A23A; }

/* FAQ cards (support page) */
.qa {
  background: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  margin: 16px 0;
}
.qa strong { color: #111827; }
.qa p { margin: 8px 0; }

/* Contact card (support page) */
.contact-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  margin-top: 24px;
}
.contact-card p { margin: 8px 0; }
.contact-card strong { color: #333; }

/* Footer */
.site-footer {
  position: relative; background: #fff;
  padding: 44px 0 64px; overflow: hidden;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; position: relative; z-index: 2;
}
.footer-social { margin-top: 14px; display: flex; gap: 14px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  background: #0B2A5B; text-decoration: none;
}
.social-btn:hover { background: #09234d; }
.social-btn svg { width: 20px; height: 20px; fill: #fff; display: block; }
.footer-links {
  display: flex; gap: clamp(18px, 3vw, 44px);
  align-items: center; flex-wrap: wrap; margin-top: 10px;
}
.footer-links a {
  text-decoration: none; color: #8a8a8a;
  font-size: 22px; font-weight: 400;
}
.footer-links a:hover { color: #0B2A5B; }
.footer-watermark {
  position: absolute; left: 50%; bottom: -8px;
  transform: translateX(-50%);
  font-size: clamp(76px, 12vw, 220px);
  font-weight: 700; letter-spacing: -2px;
  color: rgba(0,0,0,0.04);
  white-space: nowrap; z-index: 1;
  pointer-events: none; user-select: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links a { font-size: 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-button { display: none; }
  .burger { display: block; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 0;
    opacity: 0; transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links a { width: 100%; padding: 14px 20px; display: block; }
  .nav-links.is-open {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .page-content { padding: 52px 0; }
  .hero { padding: 52px 0 40px; }
  .section-features, .trust-section, .pricing { padding: 52px 0; }
  .footer-cta { padding: 40px 0; }
  .footer-cta-box { padding: 36px 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .features-grid.cols-4 { grid-template-columns: 1fr; }
  .qa { padding: 18px 22px; }
}
@media (max-width: 480px) {
  .container { width: min(1100px, 92%); }
  .feature-card { padding: 22px; }
  .trust-card { padding: 22px; }
  .pricing-card { padding: 28px 22px; }
  .btn-primary, .btn-gold { width: 100%; text-align: center; }
  .footer-links a { font-size: 16px; }
  .trust-badges { gap: 16px; }
}
