/* ==========================================================================
   1. VARIABLES & FONTS
   ========================================================================== */
:root {
    /* Brand Colors */
    --c-primary: #204d6e;
    --c-primary-dark: #17374e;
    --c-accent: #2fb6ff;
    --c-accent-green: #10b981;
    --c-whatsapp: #25d366;
    --c-whatsapp-dark: #1ebe5b;
    
    /* Neutral Colors */
    --c-dark: #0f172a;
    --c-text: #243248;
    --c-text-muted: #6b7a90;
    --c-bg: #f7fbff;
    --c-bg-alt: #f5f8fc;
    
    /* Footer Colors */
    --c-footer-bg: #253041;
    --c-footer-lower: #212c3c;
    
    /* Legal Pages */
    --bg-body: #0b1622;
    --bg-card: #182334;
    --txt-main: #f4f7fb;
    --txt-muted: #c3cede;
    --border-soft: rgba(255, 255, 255, 0.06);
    
    /* Spacing */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 18px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #12263a;
}

/* Contenedor reutilizable */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */
.topbar {
  background: #13263a;
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}
.topbar-item {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.topbar-item:hover {
  text-decoration: underline;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* ==========================================================================
    FLOATING BUTTONS
   ========================================================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    padding: 12px 18px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
}

.call-float {
    background-color: var(--c-primary);
    border: 2px solid var(--c-primary);
}

.call-float:hover {
    background-color: var(--c-primary-dark);
    color: white;
}

.whatsapp-float {
    background-color: var(--c-whatsapp);
    border: 2px solid var(--c-whatsapp);
}

.whatsapp-float:hover {
    background-color: var(--c-whatsapp-dark);
    transform: translateY(-2px);
    color: white;
}

/* Floating Buttons Mobile */
@media (max-width: 767px) {
    .floating-buttons {
        position: fixed;
        left: 0;
        right: 0;
        bottom: max(12px, env(safe-area-inset-bottom));
        padding: 0 14px;
        gap: 12px;
        flex-direction: column;
    }
    
    .float-btn {
        width: 100%;
        border-radius: 10px;
        padding: 14px 16px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    }
    
    /* Hide header buttons on mobile - floating ones take over */
    .header-right,
    .header-right .call-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Nav principal */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-mark {
  width: 28px;
  height: 40px;
  border-radius: 50% 50% 60% 60%;
  background: #1aa6ff;
  position: relative;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}
.logo-mark::before {
  top: 11px;
}
.logo-mark::after {
  top: 20px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  color: #1591e6;
  line-height: 1.1;
}

/* Menú */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #1f2933;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover {
  background: rgba(21, 145, 230, 0.1);
  color: #1591e6;
}
.nav-link.active {
  background: #1591e6;
  color: #fff;
}

/* Dropdown ZONAS */
.nav-item-has-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  color: #1f2933;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle:hover {
  background: rgba(21, 145, 230, 0.1);
  color: #1591e6;
}
.nav-arrow {
  font-size: 12px;
}

/* Caja dropdown */
.nav-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 10;
}

/* Mostrar dropdown en desktop al pasar el mouse */
.nav-item-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Estilos links dentro del dropdown */
.nav-dropdown .nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: 0;
}
.nav-dropdown .nav-link:hover {
  background: rgba(21, 145, 230, 0.06);
}
.topbar-phone svg.phone-icon {
  width: 16px;
  height: 16px;
}
.urgencia-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.btn-urgencia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 5px;          /* ← AHORA SÍ! */
  background: #c53030;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.05s ease;
}

.btn-urgencia:hover {
  background: #9b2c2c;
}
.btn-urgencia:active {
  transform: scale(0.97);
}
.btn-urgencia-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}
.btn-urgencia-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* Hamburguesa (solo se ve en mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
/* ----------- Responsive (mobile) HEADER ----------- */
@media (max-width: 860px) {



  .nav-toggle {
    order: 3;
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 12px;
    flex: 0 0 auto;
  }

  /* Menú desplegable: ocupa toda la línea de abajo */
  .nav-menu {
    order: 4;
    list-style: none;
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: max-height 0.18s ease;
  }

  .nav-menu-open {
    max-height: 400px;
  }

  /* Dropdown en mobile: sin sombra, debajo del item */
  .nav-dropdown {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown-open {
    display: block;
  }
}


/* EFECTOS ESTÉTICOS */
.hero-payment-badge { box-shadow: 0 0 14px rgba(0, 180, 255, .50); }

.btn-cta, .floating-btn {
  transition: all 0.12s ease;
}

.btn-cta-phone:hover { background: #1c4268; }
.btn-cta-whatsapp:hover {
  background: var(--c-whatsapp-dark);
}



/* ==========================================================================
 WHY US SECTION
   ========================================================================== */
.why-us-section {
    padding: 40px 0;
    background: hsl(214, 54%, 97%);
    color: #0b1b2b;
}

.why-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.why-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0b1b2b;
    text-align: left;
}

.why-title span {
    color: #2fb6ff;
}

.why-benefits-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 17px;
    color: #223047;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #e3f3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1988ff;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .why-us-section {
        padding: 50px 0;
    }
    
    .why-title {
        font-size: 28px;
        text-align: center;
    }
    
    .why-layout {
        padding: 0 15px;
    }
    
    .why-benefits-grid {
        gap: 14px 20px;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
}



/* ==========================================================================
    HERO SERVICE (Alternative Hero)
   ========================================================================== */
.hero-service {
    background: radial-gradient(1200px 600px at 10% 0%, var(--c-bg), #fff 60%);
    padding: clamp(48px, 7vw, 96px) 0;
    overflow: hidden;
}

.hero-service .container {
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: 20px;
}

.hero-service__wrap {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.hero-service__badge {
    display: inline-block;
    background: #e8f1ff;
    color: var(--c-primary);
    font-weight: 700;
    letter-spacing: .2px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .92rem;
    margin-bottom: 14px;
}

.hero-service__title {
    font-weight: 800;
    line-height: 1.05;
    color: var(--c-dark);
    font-size: clamp(32px, 5vw, 40px);
    margin: 0 0 10px 0;
}

.hero-service__title span {
    color: var(--c-primary);
}

.hero-service__lead {
    color: var(--c-text);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    margin: 0 0 18px 0;
}

.hero-service__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.hero-service__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--c-text);
    font-weight: 600;
}

.hero-service__features .ico {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    background: #eafaf3;
    border-radius: 8px;
    margin-top: 2px;
}

.hero-service__features .ico svg {
    width: 18px;
    height: 18px;
    fill: var(--c-accent-green);
}

.hero-service__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0 10px;
}

.hero-service__mini {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-top: 8px;
}

.hero-service__media {
    position: relative;
    margin: 0;
    isolation: isolate;
}

.hero-service__media::after {
    content: "";
    position: absolute;
    inset: -24px -24px -24px 20%;
    background: radial-gradient(600px 320px at 80% 20%, rgba(32, 77, 110, .14), transparent 60%);
    z-index: -1;
}

.hero-service__media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

/* Hero Service Responsive */
@media (max-width: 992px) {
    .hero-service__wrap {
        grid-template-columns: 1fr;
    }
    
    .hero-service__media {
        order: -1;
    }
    
    .hero-service__features {
        grid-template-columns: 1fr;
    }
    
    .hero-service {
        padding: 48px 0 36px;
    }
}

@media (max-width: 480px) {
    .hero-service__cta .btn,
    .hero-service__cta .float-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-service__title {
        font-size: 25px;
    }
}


/* ==========================================================================
   servicios
   ========================================================================== */

.services-section {
  padding: 0px 0 60px;
  background: #ffffff;
}

.services-title {
  text-align: center;
  font-weight: 800;
    line-height: 1.05;
    color: var(--c-dark);
    font-size: clamp(32px, 5vw, 40px);
    margin: 0 0 30px 0;
}

/* Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 20px 22px 22px;
}

.service-heading {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--c-dark);
}

.service-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

/* Mobile: columna */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 200px;
  }
}


/* ==========================================================================
   9. HOW WE WORK SECTION
   ========================================================================== */
.how-work-section {
    padding: 10px 0px 60px;
    background: #ffffff;
    color: #0b1b2b;
}

.how-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0b1b2b;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-icon {
    font-size: 42px;
    color: #2fb6ff;
    margin-bottom: 18px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1b2b;
}

.step-item p {
    font-size: 16px;
    color: #4a5b6d;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .how-title {
        font-size: 28px;
    }
    
    .step-item h3 {
        font-size: 18px;
    }
}


/* ==========================================================================
   10. ZONAS
   ========================================================================== */
/* ===== Cobertura Zonas ===== */

.coverage-section {
  padding: 72px 0 64px;
  background: var(--c-primary-dark);
}

.coverage-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.coverage-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.25;
  color: var( --c-bg);
}

.coverage-subtitle {
  margin: 0 0 22px;
  font-size: 15px;
  color: var( --c-bg);
}

/* Chips de barrios */
.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.coverage-badges span {
  padding: 6px 12px;
  border-radius: 5px!important;
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.coverage-note {
  margin: 0;
  font-size: 14px;
  color: var( --c-bg);
}


@media (max-width: 768px) {
    .coverage-title {
        font-size: 28px;
    }
    
    .coverage-subtitle {
        font-size: 16px;
    }
    
    .coverage-badges span {
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* ==========================================================================
   11. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background: #f5f8fc;
    color: #0b1b2b;
}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0b1b2b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-stars {
    font-size: 18px;
    color: #ffc94a;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    color: #223047;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2fb6ff;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 26px;
    }
}



/* ==========================================================================
   12. CONTACT SECTION
   ========================================================================== */
.contact-block {
    width: 100%;
    background: #fff;
    padding: 48px 16px 64px;
    border-top: 1px solid #eef2f7;
}

.contact-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.cta-final-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #000000;
    text-align: center;
}

.cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-final-btn {
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
}

.cta-final-btn.call-btn {
    background: var(--c-primary);
}

.cta-final-btn.call-btn:hover {
    background: var(--c-primary-dark);
    color: white;
}

.cta-final-btn.whatsapp-btn {
    background: var(--c-whatsapp);
}

.cta-final-btn.whatsapp-btn:hover {
    background: var(--c-whatsapp-dark);
    color: white;
}

.contact-sub {
    text-align: center;
    color: #6b7280;
    margin: 0 0 24px;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.contact-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    color: #111827;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #93a3b5;
    box-shadow: 0 0 0 3px rgba(147, 163, 181, .2);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.recaptcha-placeholder {
    flex: 1;
}

.btn-send {
    min-width: 120px;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    background: #6b879b;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: filter .2s ease, transform .08s ease;
    margin-left: auto;
}

.btn-send:hover {
    filter: brightness(.95);
}

.btn-send:active {
    transform: translateY(1px);
}

.messages {
    display: none;
}

#success {
    background-color: #009a00;
    border-left: 5px solid green;
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 5px;
}

#error {
    background-color: #ff1a1a;
    border-left: 5px solid red;
    color: #fff;
    padding: 5px 10px;
}

@media (max-width: 768px) {
    .cta-final-title {
        font-size: 28px;
    }
    
    .contact-form .row-2 {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
    
    .btn-send {
        margin-left: 0;
        align-self: center;
    }
}

/* ===== FOOTER ===== */

.site-footer {
  background: var(--c-footer-bg);
  color: #ffffff;
  font-size: 18px; /* ← antes 14px → +30% */
}

/* Parte superior */
.footer-top {
  padding: 50px 0 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 0;
  min-width: 240px;
}

.footer-col p {
  margin: 0 0 10px;
  line-height: 1.6;
  font-size: 18px; /* texto base */
}

.footer-title {
  margin: 0 0 14px;
  font-size: 20px; /* antes 15px */
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Lista servicios */
.footer-list li {
  margin-bottom: 6px;
  font-size: 18px;
}

/* Links */
.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

.site-footer a:hover {
  text-decoration: underline;
}


/* Parte inferior */
.footer-bottom {
  background: var(--c-footer-lower);
  padding: 12px 0 14px;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 130px;
  }
}


        :root {
            --bg-body: #0b1622;
            --bg-card: #182334;
            --txt-main: #f4f7fb;
            --txt-muted: #c3cede;
            --accent: #204d6e;
            /* azul de los botones de llamada */
            --accent-soft: #223857;
            --border-soft: rgba(255, 255, 255, 0.06);
            --radius: 16px;
        }


        /* Layout contenedor */
        .legal-container {
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 16px;
        }


        .legal-back {
            font-size: 0.9rem;
            color: var(--accent);
            text-decoration: none;
        }

        .legal-back:hover {
            text-decoration: underline;
        }

        /* Main */
        .legal-main {
            padding: 40px 0 60px;
        }

        .legal-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-soft);
            padding: 28px 22px 32px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
        }

        /* Tipografía */
        .legal-card h1 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .legal-card h2 {
            font-size: 1.1rem;
            margin-top: 20px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--txt-main);
        }

        .legal-card p {
            margin-bottom: 10px;
            color: var(--txt-muted);
            font-size: 0.98rem;
        }

        .legal-card ul {
            margin: 4px 0 10px 18px;
            color: var(--txt-muted);
            font-size: 0.96rem;
        }

        .legal-card li {
            margin-bottom: 4px;
        }



        /* Responsive */
        @media (min-width: 768px) {
            .legal-main {
                padding: 60px 0 80px;
            }

            .legal-card {
                padding: 36px 32px 40px;
            }

            .legal-card h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .legal-header .legal-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .legal-back {
                padding-top: 4px;
            }
        }
