
   * { box-sizing: border-box; }

   /* =========================================
   AZ CONTABLE — TIPOGRAFÍA GLOBAL
========================================= */

:root {

  /* FUENTES */
  --font-body: "Inter", sans-serif;
  --font-heading: "Montserrat", sans-serif;

  /* PESOS */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

}


/* =========================================
   RESET TIPOGRÁFICO
========================================= */

html {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;

  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.6;

  color: #18213f;
}


/* =========================================
   TÍTULOS
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);

  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #18213f;
}


/* =========================================
   TEXTO
========================================= */

p {
  margin: 0;

  font-family: var(--font-body);
  font-weight: var(--weight-regular);

  line-height: 1.7;

  color: #69728a;
}


/* =========================================
   LINKS
========================================= */

a {
  font-family: var(--font-body);
}


/* =========================================
   BOTONES
========================================= */

button,
input,
textarea,
select {
  font-family: var(--font-body);
}


/* =========================================
   LABELS / SMALL / SPAN
========================================= */

small,
label {
  font-family: var(--font-body);
}


/* =========================================
   STRONG
========================================= */

strong {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
}


/* =========================================
   IMÁGENES
========================================= */

img {
  max-width: 100%;
  display: block;
}

/* =========================================
   ESCALA TIPOGRÁFICA AZ CONTABLE
========================================= */

h1 {
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
}

h4 {
  font-size: 21px;
}

p {
  font-size: 16px;
}

button,
a {
  font-size: 14px;
}

@media (max-width: 768px) {

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }

}

   html { scroll-behavior: smooth; }
   
   
   img { max-width: 100%; display: block; }
   
   a { color: inherit; text-decoration: none; }
   
   .skip-link {
     position: absolute;
     left: -999px;
     top: 0;
     background: #808080;
     color: #ffffff;
     padding: 10px 16px;
     z-index: 200;
   }
   .skip-link:focus { left: 10px; top: 10px; }
   
   :focus-visible {
     outline: 2px solid #808080;
     outline-offset: 2px;
   }
   
   .eyebrow {
     display: inline-block;
     font-size: 14px;
     letter-spacing: 2px;
     color: #AAB1CB;
     margin-bottom: 16px;
   }
   
   .btn {
     display: inline-block;
     padding: 12px 22px;
     border-radius: 8px;
     font-weight: 600;
     font-size: 14px;
     text-decoration: none;
     cursor: pointer;
     border: 1.5px solid transparent;
     transition: all 0.3s ease;
   }
   .btn:hover { transform: translateY(-2px); }
   .btn--primary {
     background: #101B2D;
     color: #ffffff;
   }
   .btn--primary:hover { background: #101B2D; }
   .btn--ghost {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: #ffffff;
   }
   .btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
   
   /* ---------- Navbar ---------- */
   
   .navbar {
     position: sticky;
     top: 0;
     z-index: 100;
     background: #ffffff;
     border-bottom: 1px solid #D6E0F5;
   }
   
   .navbar__inner {
     max-width: 1120px;
     margin: 0 auto;
     padding: 14px 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   
   .navbar__brand {
     display: flex;
     align-items: center;
     gap: 10px;
   }
   
   .navbar__mark {
     width: 34px;
     height: 34px;
     border-radius: 8px;
     background: #101B2D;
     color: #ffffff;
     font-weight: 500;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
   }
   
   .navbar__name {
     font-weight: 600;
     font-size: 18px;
   }
   
   .navbar__links {
     display: flex;
     align-items: center;
     gap: 28px;
     font-size: 15px;
   }
   
   .navbar__links a:hover { color: #cbd5e1; }
   
   .navbar__login {
    border: 1.5px solid #101B2D;
    border-radius: 8px;
    padding: 5px 11px;
    font-size: 15px;
    font-weight: 500;
  }

   .navbar__login:hover { background: #101B2D; color: #ffffff; }
   
   .navbar__toggle {
     display: none;
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     width: 40px;
     height: 40px;
     background: transparent;
     border: 1.5px solid #D6E0F5;
     border-radius: 10px;
     cursor: pointer;
   }
   .navbar__toggle span {
     display: block;
     width: 18px;
     height: 2px;
     margin: 0 auto;
     background: #101B2D;
     transition: transform 0.2s ease, opacity 0.2s ease;
   }
   .navbar__toggle[aria-expanded="true"] span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
   }
   .navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
   .navbar__toggle[aria-expanded="true"] span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
   }
   
   @media (max-width: 820px) {
     .navbar__toggle { display: flex; }
     .navbar__links {
       position: absolute;
       top: 100%;
       left: 0;
       right: 0;
       background: #ffffff;
       border-bottom: 1px solid #D6E0F5;
       flex-direction: column;
       align-items: flex-start;
       gap: 0;
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.25s ease;
       font-size: 15px;
       text-align: center;
     }
     .navbar__links.is-open { max-height: 520px; }
     .navbar__links a {
       width: 100%;
       padding: 14px 24px;
       border-top: 1px solid #D6E0F5;
     }
     .navbar__login { border: none; border-top: 1px solid #D6E0F5; border-radius: 0; font-size: 15px; }

.navbar__admin-name {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 24px;
  border-top: 1px solid #D6E0F5;
 
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}
 
.navbar__links .navbar__login {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
   }

  
   /* ---------- Hero ---------- */


.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;

  background:
    url("../img/heroaz.png")
    center center / cover
    no-repeat;
}

/* Overlay más suave para que se vea la fotografía */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(6, 12, 24, 0.45) 0%,
      rgba(6, 12, 24, 0.28) 45%,
      rgba(6, 12, 24, 0.62) 100%
    );

  z-index: 1;
}

/* Textura sutil */
.hero__ledger {
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );

  background-size: 24px 24px;
  opacity: 0.18;
  z-index: 2;
}

/* Contenido */
.hero__content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  padding: 40px 20px;

  text-align: center;
  color: #ffffff;
}

/* Eyebrow */
.hero .eyebrow {
  display: inline-block;

  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.85);
}

/* Título */
.hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  color:#fff;

  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;

  font-weight: 600;
  letter-spacing: -0.035em;

  text-wrap: balance;
}

/* Descripción */
.hero__lead {
  max-width: 680px;

  margin: 0 auto 34px;

  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.88);

  text-wrap: balance;
}

/* Botones */
.hero__actions {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 14px;
  flex-wrap: wrap;
}


/* Mobile */
@media (max-width: 768px) {

  .hero {
    min-height: 100svh;
    padding: 110px 18px 60px;

    background-position: center center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(6, 12, 24, 0.52) 0%,
        rgba(6, 12, 24, 0.38) 45%,
        rgba(6, 12, 24, 0.68) 100%
      );
  }

  .hero__content {
    padding: 20px 8px;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .btn {
    width: min(100%, 300px);
    text-align: center;
  }
}

/* Pantallas muy chicas */
@media (max-width: 400px) {

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__lead {
    font-size: 15px;
  }
}
   
   .form__honeypot {
     position: absolute;
     left: -9999px;
     width: 1px;
     height: 1px;
     overflow: hidden;
   }
   

   /* ---------- WhatsApp float ---------- */
   
   .whatsapp-float {
     position: fixed;
     bottom: 24px;
     right: 24px;
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: #25D366;
     color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 14px rgba(16, 27, 45, 0.25);
     z-index: 150;
     transition: transform 0.15s ease;
   }
   .whatsapp-float:hover { transform: scale(1.06); }
   
   @media (prefers-reduced-motion: reduce) {
     * { transition: none !important; scroll-behavior: auto !important; }
   }

   .proceso {
    margin-top: 100px;
    padding: 24px 0 24px;
    background: var(--paper, #fff);
    text-align: center;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* TITULOS */
  .eyebrow {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .eyebrow1 {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  
  .section-title {
    font-size: 34px;
    font-weight: 600;
    color: #0A2A5E;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 16px;
    color: #808080;
    max-width: 520px;
    margin: 0 auto 48px;
  }
  
  

  .faq {
    padding: 80px 24px;
    background: #fff;
    text-align: center;
  }
  
  .faq .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* LISTA */
  .faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* ITEM */
  .faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
  }
  
  /* PREGUNTA */
  .faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #101B2D;
    font-weight: 500;
  }
  
  /* HOVER */
  .faq-question:hover {
    background: #f1f5f9;
  }
  
  /* ICONO */
  .faq-question span {
    font-size: 20px;
    transition: 0.3s;
  }
  
  /* RESPUESTA */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
  }
  
  .faq-answer p {
    font-size: 14px;
    color: #556070;
    padding: 0 0 18px;
  }
  
  /* ACTIVO */
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  .faq-item.active .faq-question span {
    transform: rotate(45deg);
  }



 /* =========================================
   SITUACIÓN FISCAL
   Adaptado al diseño general de AZ Contable
========================================= */

.situacion-fiscal {
  width: 100%;
  padding: 150px 6% 170px;
  background: #101B2D;
  border-top: 1px solid #dce3ef;
}

.situacion-header {
  max-width: 850px;
  margin: 0 auto 90px;
  text-align: center;
}

.situacion-fiscal .situacion-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.situacion-fiscal .situacion-header .eyebrow {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.situacion-fiscal .situacion-header h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
}

.situacion-fiscal .situacion-header p {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
}


/* ---------- LISTA ---------- */

.situacion-list {
  max-width: 800px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ---------- CARD ---------- */

.situacion-card {
  overflow: hidden;

  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.situacion-card:hover {
  border-color: #d5dbe5;
}


/* ---------- BOTÓN ---------- */

.situacion-toggle {
  width: 100%;

  min-height: 64px;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  border: none;

  color: #101B2D;
  text-align: left;

  cursor: pointer;
}

.situacion-toggle:hover {
  background: #f1f5f9;
}


/* CONTENIDO DEL TÍTULO */

.situacion-toggle > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.situacion-numero {
  font-size: 13px;
  font-weight: 600;
  color: #AAB1CB;
}

.situacion-toggle h3 {
  margin: 0;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;

  color: #101B2D;
}


/* ---------- ICONO ---------- */

.situacion-icon {
  width: 24px;
  height: 24px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 21px;
  line-height: 1;

  color: #101B2D;

  transition: transform 0.3s ease;
}


/* ---------- CONTENIDO DESPLEGABLE ---------- */

.situacion-content {
  max-height: 0;
  overflow: hidden;

  opacity: 0;

  padding: 0 20px;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.3s ease;
}


/* ---------- CARD ABIERTA ---------- */

.situacion-card.active {
  background: #fff;
}

.situacion-card.active .situacion-content {
  max-height: 1000px;

  opacity: 1;

  padding: 0 20px 20px;
}

.situacion-card.active .situacion-icon {
  transform: rotate(45deg);
}


/* ---------- INTRO ---------- */

.situacion-intro {
  margin: 0 0 20px;

  padding-top: 2px;

  font-size: 14px;
  line-height: 1.6;

  color: #6b7280;
}


/* ---------- LISTA DE OBLIGACIONES ---------- */

.situacion-items {
  display: flex;
  flex-direction: column;

  border-top: 1px solid #e5e7eb;
}


/* ---------- ITEM ---------- */

.situacion-item {
  display: grid;
  grid-template-columns: 35px 1fr;

  gap: 8px;

  padding: 17px 0;

  border-bottom: 1px solid #e5e7eb;
}

.situacion-item > span {
  padding-top: 2px;

  font-size: 12px;
  font-weight: 600;

  color: #AAB1CB;
}

.situacion-item h4 {
  margin: 0 0 5px;

  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;

  color: #101B2D;
}

.situacion-item p {
  max-width: 650px;

  margin: 0;

  font-size: 14px;
  line-height: 1.5;

  color: #6b7280;
}


/* ---------- CTA ---------- */

.situacion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 22px;

  padding: 11px 17px;

  border-radius: 8px;

  background: #101B2D;
  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.situacion-cta:hover {
  background: #fff;
  color:#101B2D;
  transform: translateY(-2px);
}

.situacion-cta span {
  font-size: 17px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .situacion-fiscal {
    padding: 60px 16px;
  }

  .situacion-fiscal .situacion-header {
    max-width: 100%;
  }

  .situacion-fiscal .situacion-header .eyebrow {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .situacion-fiscal .situacion-header h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .situacion-list {
    width: 100%;
    gap: 12px;
  }

  .situacion-card {
    border-radius: 10px;
  }

  .situacion-toggle {
    min-height: 60px;
    padding: 16px;
  }

  .situacion-toggle > div {
    gap: 10px;
  }

  .situacion-numero {
    display: none;
  }

  .situacion-toggle h3 {
    font-size: 15px;
    line-height: 1.4;
  }

  .situacion-icon {
    width: 22px;
    height: 22px;
    font-size: 20px;
  }

  .situacion-card.active .situacion-content {
    padding: 0 16px 18px;
  }

  .situacion-item {
    grid-template-columns: 28px 1fr;
    gap: 5px;
    padding: 15px 0;
  }

  .situacion-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .situacion-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .situacion-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;

    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  .situacion-header p {
    text-align: center;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
    line-height: 1.6;
  }

}

@media (max-width: 768px) {

  
  
  .situacion-intro {
    text-align: center;
    max-width: 340px;
    margin: 10px auto 10px;
    line-height: 1.6;
  }

}

/* =========================================
   FOOTER — AZ CONTABLE
   Apple / Premium / Responsive
========================================= */

.footer {
  width: 100%;

  background: #101B2D;
  color: #fff;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================
   CONTENEDOR PRINCIPAL
========================================= */

.footer__container {
  width: min(1200px, calc(100% - 48px));

  margin: 0 auto;

  padding: 45px 0 70px;

  display: grid;

  grid-template-columns:
    1.7fr
    1fr
    1fr
    1.3fr;

  gap: 60px;
}


/* =========================================
   MARCA
========================================= */

.footer__brand {
  max-width: 340px;

  display: flex;
  flex-direction: column;

  align-items: flex-start;
}


.footer__logo {
  display: flex;

  align-items: center;

  margin: 0;
  padding: 0;

  text-decoration: none;
}


.footer__logo img {
  display: block;

  width: 100px;
  height: auto;

  margin: 0;
  padding: 0;
}


.footer__brand p {
  max-width: 285px;

  margin: 14px 0 0;

  font-size: 15px;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.58);
}


/* =========================================
   COLUMNAS
========================================= */

.footer__column h3,
.footer__contact h3 {
  margin: 0 0 20px;

  font-size: 18px;

  font-weight: 600;

  letter-spacing: 0.02em;

  color: #fff;
}


.footer__column ul {
  list-style: none;

  margin: 0;
  padding: 0;
}


.footer__column li {
  margin: 0 0 12px;
}


.footer__column li:last-child {
  margin-bottom: 0;
}


.footer__column a {
  display: inline-block;

  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;

  line-height: 1.4;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.footer__column a:hover {
  color: #fff;

  transform: translateX(2px);
}


/* =========================================
   CONTACTO
========================================= */

.footer__contact {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}


.footer__contact p {
  max-width: 280px;

  margin: 0 0 18px;

  font-size: 15px;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.58);
}


/* =========================================
   BOTÓN
========================================= */

.footer__whatsapp {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);

  color: #fff;

  font-size: 13px;

  text-decoration: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


.footer__whatsapp:hover {
  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.25);

  transform: translateY(-1px);
}


/* =========================================
   REDES
========================================= */

.footer__social {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 25px;
}


.footer__social a {
  font-size: 12px;

  color: rgba(255, 255, 255, 0.48);

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.footer__social a:hover {
  color: #fff;

  transform: translateY(-1px);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer__bottom {
  width: min(1200px, calc(100% - 48px));

  margin: 0 auto;

  padding: 23px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}


.footer__bottom p {
  margin: 0;

  font-size: 11px;

  line-height: 1.5;

  color: rgba(255, 255, 255, 0.4);
}


.footer__legal {
  display: flex;

  align-items: center;

  gap: 22px;
}


.footer__legal a {
  font-size: 11px;

  color: rgba(255, 255, 255, 0.4);

  text-decoration: none;

  transition: color 0.25s ease;
}


.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .footer__container {
    grid-template-columns: 1fr 1fr;

    gap: 50px 40px;

    text-align: center;
  }


  .footer__brand {
    grid-column: 1 / -1;

    max-width: 500px;

    margin: 0 auto;

    align-items: center;
  }


  .footer__brand p {
    margin-left: auto;
    margin-right: auto;
  }


  .footer__column {
    display: flex;

    flex-direction: column;

    align-items: center;
  }


  .footer__contact {
    align-items: center;
  }


  .footer__social {
    justify-content: center;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .footer__container {
    width: calc(100% - 36px);

    padding: 22px 0 48px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 45px;

    text-align: center;
  }


  /* MARCA */

  .footer__brand {
    width: 100%;

    max-width: 340px;

    margin: 0 auto;

    align-items: center;
  }


  .footer__logo {
    width: 100%;

    justify-content: center;
  }


  .footer__logo img {
    width: 180px;
  }


  .footer__brand p {
    max-width: 290px;

    margin: 14px auto 0;

    font-size: 12px;

    line-height: 1.6;
  }


  /* COLUMNAS */

  .footer__column {
    width: 100%;

    align-items: center;
  }


  .footer__column h3,
  .footer__contact h3 {
    margin-bottom: 18px;

    font-size: 12px;
  }


  .footer__column li {
    margin-bottom: 11px;
  }


  .footer__column a {
    font-size: 12px;
  }


  /* CONTACTO */

  .footer__contact {
    width: 100%;

    align-items: center;
  }


  .footer__contact p {
    max-width: 280px;

    margin: 0 auto 18px;

    font-size: 12px;

    line-height: 1.6;
  }


  /* BOTÓN */

  .footer__whatsapp {
    padding: 10px 16px;

    font-size: 12px;
  }


  /* REDES */

  .footer__social {
    justify-content: center;

    gap: 18px;

    margin-top: 28px;
  }


  .footer__social a {
    font-size: 12px;
  }


  /* BOTTOM */

  .footer__bottom {
    width: calc(100% - 36px);

    padding: 22px 0;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    text-align: center;
  }


  .footer__bottom p {
    max-width: 300px;

    font-size: 10px;
  }


  .footer__legal {
    flex-direction: column;

    gap: 9px;
  }


  .footer__legal a {
    font-size: 10px;
  }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 400px) {

  .footer__container {
    width: calc(100% - 30px);

    padding: 18px 0 42px;

    gap: 40px;
  }


  .footer__logo img {
    width: 150px;
  }


  .footer__brand p {
    max-width: 275px;

    font-size: 11.5px;
  }


  .footer__social {
    margin-top: 25px;
  }


  .footer__bottom {
    width: calc(100% - 30px);
  }

}
/* =========================================
   MARKET TICKER
========================================= */

.market-ticker {
  width: 100%;
  height: 100px;

  display: flex;
  align-items: center;

  background: #ffffff;

  border-top: 1px solid #e5e9f1;
  border-bottom: 1px solid #e5e9f1;

  overflow: hidden;
}


/* =========================================
   VIEWPORT
========================================= */

.market-ticker__viewport {
  width: 100%;
  overflow: hidden;
}


/* =========================================
   TRACK
========================================= */

.market-ticker__track {
  display: flex;
  align-items: center;

  width: max-content;

  animation: marketScroll 38s linear infinite;
}

.market-ticker__track:hover {
  animation-play-state: paused;
}


/* =========================================
   CARD
========================================= */

.market-card {
  min-width: 300px;

  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;

  gap: 25px;

  padding: 0 35px;

  border-right: 1px solid #e5e9f1;
}


/* =========================================
   INFO
========================================= */

.market-card__category {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;

  color: #8a94a8;
}

.market-card h3 {
  margin: 0;

  font-size: 15px;
  font-weight: 600;

  color: #25387A;
}


/* =========================================
   VALUE
========================================= */

.market-card__value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-card__price {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;

  color: #1d2638;
}

.market-card__variation {
  font-size: 15px;
}

.market-card__variation.positive {
  color: #3b9b68;
}

.market-card__variation.neutral {
  color: #9aa3b5;
}


/* =========================================
   DETAIL
========================================= */

.market-card__detail {
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: .5px;

  color: #8a94a8;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes marketScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .market-ticker {
    height: 92px;
  }

  .market-card {
    min-width: 270px;
    padding: 0 28px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .market-ticker {
    height: 82px;
  }

  .market-card {
    min-width: 245px;
    gap: 18px;
    padding: 0 22px;
  }

  .market-card__detail {
    display: none;
  }

  .market-card h3 {
    font-size: 14px;
  }

  .market-card__price {
    font-size: 13px;
  }

}

/* =========================================
   UBICACIÓN DEL ESTUDIO
   Mismo tamaño visual que FAQ
========================================= */

.ubicacion-section {
  width: 100%;
  padding: 80px 24px;

  background: #fff;

  border-top: 1px solid #dce3ef;
}


/* =========================================
   HEADER
========================================= */

.ubicacion-header {
  max-width: 800px;

  margin: 0 auto 48px;

  text-align: center;
}

.ubicacion-eyebrow {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;
  letter-spacing: 1px;

  color: #6b7280;
}

.ubicacion-header h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 600;
  color: #0A2A5E;
}

.ubicacion-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  color: #808080;
}


/* =========================================
   CONTENEDOR
========================================= */

.ubicacion-content {
  max-width: 800px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;

  gap: 16px;
}


/* =========================================
   MAPA
========================================= */

.ubicacion-map {
  width: 100%;
  height: 300px;

  overflow: hidden;

  border: 1px solid #e5e7eb;
  border-radius: 12px;

  background: #fafafa;
}

.ubicacion-map iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}


/* =========================================
   INFORMACIÓN
========================================= */

.ubicacion-info {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;
}


/* =========================================
   ITEMS
========================================= */

.ubicacion-item {
  padding: 20px;

  background: #fafafa;

  border: 1px solid #e5e7eb;

  border-radius: 12px;
}

.ubicacion-label {
  display: block;

  margin-bottom: 6px;

  font-size: 13px;

  letter-spacing: 1px;

  color: #6b7280;
}

.ubicacion-item h3 {
  margin: 0 0 4px;

  font-size: 16px;
  line-height: 1.4;

  font-weight: 500;

  color: #101B2D;
}

.ubicacion-item p {
  margin: 0;

  font-size: 14px;
  line-height: 1.5;

  color: #6b7280;
}


/* =========================================
   BOTÓN
========================================= */

.ubicacion-button {
  grid-column: 1 / -1;

  display: flex;

  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 18px 20px;

  border-radius: 12px;

  background:#101B2D ;

  color: #fff;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.ubicacion-button span {
  font-size: 18px;
}

.ubicacion-button:hover {
  background: #101B2D;

  transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .ubicacion-section {
    padding: 60px 16px;
  }

  .ubicacion-header {
    max-width: 100%;

    margin-bottom: 40px;
  }

  .ubicacion-eyebrow {
    font-size: 13px;

    margin-bottom: 8px;
  }

  .ubicacion-header h2 {
    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 12px;
  }

  .ubicacion-header p {
    font-size: 15px;

    line-height: 1.5;
  }

  .ubicacion-content {
    width: 100%;

    gap: 12px;
  }

  .ubicacion-map {
    height: 250px;

    border-radius: 10px;
  }

  .ubicacion-info {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .ubicacion-item {
    padding: 16px;

    border-radius: 10px;
  }

  .ubicacion-button {
    grid-column: auto;

    padding: 16px;

    border-radius: 10px;
  }

}


/* =========================================
   PANTALLAS MUY CHICAS
========================================= */

@media (max-width: 400px) {

  .ubicacion-section {
    padding: 55px 14px;
  }

  .ubicacion-header h2 {
    font-size: 28px;
  }

  .ubicacion-map {
    height: 230px;
  }

}

/* =========================================
   QUÉ NECESITÁS RESOLVER
   AZ CONTABLE
========================================= */

.resolver-section {
  width: 100%;

  padding: 80px 24px;

  background: #fff;

  border-top: 1px solid #dce3ef;
}


/* =========================================
   HEADER
========================================= */

.resolver-header {
  max-width: 800px;

  margin: 0 auto 48px;

  text-align: center;
}

.resolver-eyebrow {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;

  letter-spacing: 1px;

  color: #6b7280;
}

.resolver-header h2 {
  margin: 10px 0 12px;

  font-size: clamp(28px, 4vw, 38px);

  line-height: 1.2;

  font-weight: 600;

  color: #0A2A5E;
}

.resolver-header p {
  max-width: 520px;

  margin: 0 auto;

  font-size: 16px;

  line-height: 1.5;

  color: #808080;
}


/* =========================================
   CONTENEDOR
========================================= */

.resolver-container {
  width: 100%;

  max-width: 800px;

  margin: 0 auto;
}


/* =========================================
   GRID
========================================= */

.resolver-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;
}


/* =========================================
   CARD
========================================= */

.resolver-card {
  position: relative;

  min-height: 135px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: flex-end;

  text-align: left;

  background: #fafafa;

  border: 1px solid #e5e7eb;

  border-radius: 12px;

  cursor: pointer;

  font-family: inherit;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}


/* =========================================
   HOVER
========================================= */

.resolver-card:hover {
  background: #fff;

  border-color: #cbd5e1;

  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(10, 42, 94, 0.06);
}


/* =========================================
   CARD ACTIVA
========================================= */

.resolver-card.active {
  background: #101B2D;

  border-color: #0A2A5E;

  box-shadow: 0 8px 24px rgba(10, 42, 94, 0.10);
}

.resolver-card.active:hover {
  transform: translateY(-2px);
}


/* =========================================
   TITULO
========================================= */

.resolver-title {
  display: block;

  width: 100%;

  padding-right: 35px;

  font-size: 17px;

  line-height: 1.3;

  font-weight: 500;

  color: #101B2D;
}

.resolver-card.active .resolver-title {
  color: #fff;
}


/* =========================================
   FLECHA
========================================= */

.resolver-arrow {
  position: absolute;

  right: 18px;

  bottom: 17px;

  width: 8px;

  height: 8px;

  border-top: 1.5px solid #0A2A5E;

  border-right: 1.5px solid #0A2A5E;

  transform: rotate(45deg);

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.resolver-card:hover .resolver-arrow {
  transform: translate(2px, -2px) rotate(45deg);
}

.resolver-card.active .resolver-arrow {
  border-color: #fff;
}


.resolver-result {
  position: relative;

  display: flex;

  margin-top: 16px;

  padding: 28px;

  background: #fafafa;

  border: 1px solid #cbd5e1;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(10, 42, 94, 0.04);
}

.resolver-result {
  border: 1px solid #0A2A5E;
}




/* =========================================
   CONTENIDO RESULTADO
========================================= */

.resolver-result-content {
  max-width: 620px;
}

.resolver-result-label {
  display: block;

  margin-bottom: 7px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1.5px;

  color: #aab1cb;
}

.resolver-result h3 {
  margin: 0 0 10px;

  font-size: 21px;

  line-height: 1.3;

  font-weight: 600;

  color: #0A2A5E;
}

.resolver-result p {
  margin: 0;

  font-size: 15px;

  line-height: 1.6;

  color: #6b7280;
}


/* =========================================
   CTA
========================================= */

.resolver-cta {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: 20px;

  padding: 10px 15px;

  border-radius: 8px;

  background: #101B2D;

  color: #fff;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition:
    background .25s ease,
    transform .25s ease;
}

.resolver-cta:hover {
  background: #101B2D;

  transform: translateY(-2px);
}

.resolver-cta span {
  position: relative;

  width: 7px;

  height: 7px;

  border-top: 1px solid #fff;

  border-right: 1px solid #fff;

  transform: rotate(45deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .resolver-section {
    padding: 60px 16px;
  }


  /* HEADER */

  .resolver-header {
    max-width: 100%;

    margin-bottom: 40px;
  }

  .resolver-eyebrow {
    font-size: 13px;

    margin-bottom: 8px;
  }

  .resolver-header h2 {
    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 12px;
  }

  .resolver-header p {
    font-size: 15px;

    line-height: 1.5;
  }


  /* CONTAINER */

  .resolver-container {
    width: 100%;
  }


  /* GRID */

  .resolver-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  /* CARD */

  .resolver-card {
    min-height: 110px;

    padding: 18px;

    border-radius: 10px;
  }

  .resolver-title {
    font-size: 16px;

    padding-right: 30px;
  }


  /* RESULTADO */

  .resolver-result {
    margin-top: 12px;

    padding: 24px;

    border-radius: 10px;
  }

  .resolver-result h3 {
    font-size: 19px;
  }

  .resolver-result p {
    font-size: 14px;
  }

  .resolver-cta {
    margin-top: 18px;
  }

}


/* =========================================
   PANTALLAS MUY CHICAS
========================================= */

@media (max-width: 400px) {

  .resolver-section {
    padding: 55px 14px;
  }

  .resolver-header h2 {
    font-size: 28px;
  }

  .resolver-card {
    min-height: 105px;

    padding: 17px;
  }

  .resolver-result {
    padding: 21px;
  }

}


/* =========================================
   PRÓXIMOS VENCIMIENTOS
========================================= */

.vencimientos-section {
  width: 100%;
  padding: 80px 24px;

  background: #fff;

  border-top: 1px solid #dce3ef;
}


/* =========================================
   HEADER
========================================= */

.vencimientos-header {
  max-width: 800px;

  margin: 0 auto 50px;

  text-align: center;
}

.vencimientos-eyebrow {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;
  letter-spacing: 1px;

  color: #6b7280;
}

.vencimientos-header h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 38px);

  line-height: 1.2;

  font-weight: 600;

  color: #0A2A5E;
}

.vencimientos-header p {
  max-width: 520px;

  margin: 0 auto;

  font-size: 16px;
  line-height: 1.5;

  color: #808080;
}


/* =========================================
   LISTA
========================================= */

.vencimientos-list {
  width: 100%;
  max-width: 800px;

  margin: 0 auto;
}


/* =========================================
   ROW
========================================= */

.vencimiento-row {
  display: grid;

  grid-template-columns: 110px 1fr;

  gap: 28px;

  padding: 25px 0;

  border-bottom: 1px solid #e5e7eb;
}

.vencimiento-row:first-child {
  border-top: 1px solid #e5e7eb;
}


/* =========================================
   FECHA
========================================= */

.vencimiento-fecha {
  display: flex;

  align-items: baseline;

  gap: 6px;

  color: #0A2A5E;
}

.vencimiento-fecha strong {
  font-size: 32px;

  line-height: 1;

  font-weight: 600;
}

.vencimiento-fecha span {
  font-size: 12px;

  letter-spacing: 1px;

  color: #6b7280;
}


/* =========================================
   INFORMACIÓN
========================================= */

.vencimiento-info {
  padding-top: 2px;
}

.vencimiento-info h3 {
  margin: 0 0 5px;

  font-size: 17px;

  line-height: 1.3;

  font-weight: 600;

  color: #101B2D;
}

.vencimiento-info p {
  margin: 0;

  font-size: 14px;

  line-height: 1.5;

  color: #6b7280;
}


/* =========================================
   FOOTER
========================================= */

.vencimientos-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;
}

.vencimientos-footer p {
  margin: 0;

  font-size: 13px;

  line-height: 1.5;

  color: #808080;
}

.vencimientos-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #0A2A5E;

  font-family: inherit;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  white-space: nowrap;

  transition:
    gap .25s ease,
    color .25s ease;
}

.vencimientos-link span {
  font-size: 18px;

  transition: transform .25s ease;
}

.vencimientos-link:hover {
  gap: 11px;

  color: #101B2D;
}

.vencimientos-link:hover span {
  transform: translateX(2px);
}


/* =========================================
   MODAL
========================================= */

.calendario-modal {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 24px;

  visibility: hidden;

  opacity: 0;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.calendario-modal.active {
  visibility: visible;

  opacity: 1;
}


/* =========================================
   OVERLAY
========================================= */

.calendario-overlay {
  position: absolute;

  inset: 0;

  background: rgba(10, 27, 45, .45);

  backdrop-filter: blur(4px);
}


/* =========================================
   DIALOG
========================================= */

.calendario-dialog {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 700px;

  max-height: 85vh;

  overflow-y: auto;

  padding: 30px;

  background: #fff;

  border: 1px solid #e5e7eb;

  border-radius: 16px;

  box-shadow: 0 25px 70px rgba(10, 42, 94, .16);

  transform: translateY(15px);

  transition: transform .3s ease;
}

.calendario-modal.active .calendario-dialog {
  transform: translateY(0);
}


/* =========================================
   HEADER MODAL
========================================= */

.calendario-header {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 24px;

  border-bottom: 1px solid #e5e7eb;
}

.calendario-eyebrow {
  display: block;

  margin-bottom: 6px;

  font-size: 11px;

  letter-spacing: 1.5px;

  color: #aab1cb;
}

.calendario-header h2 {
  margin: 0;
  font-size: 28px;

  line-height: 1.2;

  font-weight: 600;

  color: #0A2A5E;
}


/* =========================================
   CERRAR
========================================= */

.calendario-close {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  padding: 0;

  border: 1px solid #e5e7eb;

  border-radius: 50%;

  background: #fafafa;

  color: #101B2D;

  font-size: 24px;

  line-height: 1;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.calendario-close:hover {
  background: #fff;

  border-color: #cbd5e1;

  transform: rotate(90deg);
}


/* =========================================
   CONTROLES
========================================= */

.calendario-controls {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 22px;

  padding: 24px 0;
}

.calendario-controls > span {
  min-width: 130px;

  text-align: center;

  font-size: 15px;

  font-weight: 600;

  color: #101B2D;
}

.calendario-month-button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  padding: 0;

  border: 1px solid #e5e7eb;

  border-radius: 50%;

  background: #fff;

  color: #0A2A5E;

  font-size: 16px;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease;
}

.calendario-month-button:hover {
  background: #fafafa;

  border-color: #aab1cb;
}


/* =========================================
   LISTA MODAL
========================================= */

.calendario-list {
  border-top: 1px solid #e5e7eb;
}

.calendario-item {
  display: grid;

  grid-template-columns: 85px 1fr;

  gap: 20px;

  padding: 20px 0;

  border-bottom: 1px solid #e5e7eb;
}

.calendario-item-date {
  display: flex;

  align-items: baseline;

  gap: 5px;

  color: #0A2A5E;
}

.calendario-item-date strong {
  font-size: 26px;

  line-height: 1;

  font-weight: 600;
}

.calendario-item-date span {
  font-size: 11px;

  letter-spacing: 1px;

  color: #6b7280;
}

.calendario-item-info h3 {
  margin: 0 0 5px;

  font-size: 15px;

  font-weight: 600;

  color: #101B2D;
}

.calendario-item-info p {
  margin: 0;

  font-size: 13px;

  line-height: 1.5;

  color: #6b7280;
}


/* =========================================
   NOTA
========================================= */

.calendario-nota {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-top: 24px;

  padding-top: 20px;

  border-top: 1px solid #e5e7eb;
}

.calendario-nota > span {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #f4f6fb;

  color: #0A2A5E;

  font-size: 12px;

  font-weight: 600;
}

.calendario-nota p {
  margin: 0;

  font-size: 12px;

  line-height: 1.5;

  color: #808080;
}


/* =========================================
   BODY BLOQUEADO
========================================= */

body.modal-open {
  overflow: hidden;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .vencimientos-section {
    padding: 60px 16px;
  }

  .vencimientos-header {
    margin-bottom: 40px;
  }

  .vencimientos-header h2 {
    font-size: 30px;
  }

  .vencimientos-header p {
    font-size: 15px;
  }

  .vencimiento-row {
    grid-template-columns: 85px 1fr;

    gap: 18px;

    padding: 20px 0;
  }

  .vencimiento-fecha strong {
    font-size: 27px;
  }

  .vencimiento-info h3 {
    font-size: 16px;
  }

  .vencimiento-info p {
    font-size: 13px;
  }

  .vencimientos-footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 16px;
  }

  .calendario-modal {
    padding: 12px;
  }

  .calendario-dialog {
    max-height: 90vh;

    padding: 22px;

    border-radius: 14px;
  }

  .calendario-header h2 {
    font-size: 25px;
  }

  .calendario-item {
    grid-template-columns: 70px 1fr;

    gap: 15px;
  }

}


@media (max-width: 400px) {

  .vencimientos-section {
    padding: 55px 14px;
  }

  .vencimiento-row {
    grid-template-columns: 75px 1fr;

    gap: 12px;
  }

  .vencimiento-fecha strong {
    font-size: 25px;
  }

  .calendario-dialog {
    padding: 18px;
  }

  .calendario-controls {
    gap: 14px;
  }

}



/* =========================================
   CONSULTA PROFESIONAL
========================================= */

.consulta-section {
  width: 100%;

  padding: 100px 24px;

  background: #f4f6fb;

  border-top: 1px solid #dce3ef;
}

.consulta-container {
  width: 100%;
  max-width: 850px;

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.consulta-header {
  max-width: 700px;

  margin: 0 auto 60px;

  text-align: center;
}

.consulta-eyebrow {
  display: block;

  margin-bottom: 10px;

  font-size: 13px;

  letter-spacing: 1.5px;

  color: #6b7280;
}

.consulta-header h2 {
  margin: 10px 0 14px;

  font-size: clamp(32px, 5vw, 44px);

  line-height: 1.2;

  font-weight: 600;

  color: #0A2A5E;
}

.consulta-header p {
  max-width: 560px;

  margin: 0 auto;

  font-size: 15px;

  line-height: 1.7;

  color: #6b7280;
}


/* =========================================
   FORM
========================================= */

.consulta-form {
  width: 100%;

  background: #fff;

  padding: 42px;

  border: 1px solid #e5e7eb;

  border-radius: 14px;
}


/* =========================================
   BLOQUES
========================================= */

.consulta-block {
  padding: 30px 0;

  border-bottom: 1px solid #e5e7eb;
}

.consulta-block:first-child {
  padding-top: 0;
}


/* =========================================
   LABEL
========================================= */

.consulta-label {
  display: block;

  margin-bottom: 7px;

  font-size: 14px;

  font-weight: 600;

  color: #101B2D;
}

.consulta-help {
  margin: 0 0 18px;

  font-size: 13px;

  line-height: 1.5;

  color: #808080;
}


/* =========================================
   TIPO CLIENTE
========================================= */

.tipo-cliente {
  display: flex;

  gap: 12px;
}

.tipo-option {
  position: relative;

  flex: 1;

  cursor: pointer;
}

.tipo-option input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.tipo-option span {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 14px;

  border: 1px solid #e5e7eb;

  border-radius: 9px;

  background: #fafafa;

  font-size: 14px;

  font-weight: 500;

  color: #101B2D;

  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.tipo-option input:checked + span {
  background: #101B2D;

  border-color: #0A2A5E;

  color: #fff;
}

.tipo-option:hover span {
  border-color: #aab1cb;
}


/* =========================================
   DATOS DINÁMICOS
========================================= */

.consulta-datos {
  display: none;
}

.consulta-datos.active {
  display: block;
}


/* =========================================
   GRID
========================================= */

.consulta-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}


/* =========================================
   CAMPOS
========================================= */

.campo {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.campo-full {
  grid-column: 1 / -1;
}

.campo label {
  font-size: 13px;

  color: #6b7280;
}

.campo input,
.campo select,
.consulta-block textarea {
  width: 100%;

  padding: 12px 13px;

  border: 1px solid #dce3ef;

  border-radius: 8px;

  background: #fff;

  color: #101B2D;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.campo input,
.campo select {
  height: 46px;
}

.campo input:focus,
.campo select:focus,
.consulta-block textarea:focus {
  border-color: #0A2A5E;

  box-shadow:
    0 0 0 3px rgba(10, 42, 94, .06);
}

.consulta-block textarea {
  resize: vertical;

  min-height: 140px;

  line-height: 1.6;
}

.campo input::placeholder,
.consulta-block textarea::placeholder {
  color: #a0a4aa;
}


/* =========================================
   RADIO
========================================= */

.consulta-radio {
  display: flex;

  gap: 25px;
}

.consulta-radio label {
  display: flex;

  align-items: center;

  gap: 8px;

  cursor: pointer;

  font-size: 14px;

  color: #101B2D;
}

.consulta-radio input {
  accent-color: #0A2A5E;
}


/* =========================================
   CONSENTIMIENTO
========================================= */

.consulta-consent {
  padding: 25px 0 10px;
}

.consulta-consent label {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  cursor: pointer;

  font-size: 12px;

  line-height: 1.5;

  color: #6b7280;
}

.consulta-consent input {
  margin-top: 2px;

  accent-color: #0A2A5E;
}


/* =========================================
   ERROR
========================================= */

.consulta-error {
  display: none;

  margin-top: 15px;

  padding: 12px 14px;

  border-radius: 8px;

  background: #fff4f4;

  color: #a33;

  font-size: 13px;

  line-height: 1.5;
}

.consulta-error.active {
  display: block;
}


/* =========================================
   SUBMIT
========================================= */

.consulta-submit {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-top: 18px;

  padding: 16px 18px;

  border: 0;

  border-radius: 9px;

  background: #101B2D;

  color: #fff;

  font-family: inherit;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  transition:
    background .25s ease,
    transform .25s ease;
}

.consulta-submit strong {
  font-size: 20px;

  font-weight: 400;

  transition: transform .25s ease;
}

.consulta-submit:hover {
  background: #101B2D;
  color:#fff;
  transform: translateY(-2px);
}

.consulta-submit:hover strong {
  transform: translateX(4px);
}


/* =========================================
   PRIVACY
========================================= */

.consulta-privacy {
  margin: 14px 0 0;

  text-align: center;

  font-size: 11px;

  line-height: 1.5;

  color: #9a9a9a;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .consulta-section {
    padding: 65px 16px;
  }

  .consulta-header {
    margin-bottom: 40px;
  }

  .consulta-header h2 {
    font-size: 31px;
  }

  .consulta-header p {
    font-size: 14px;
  }

  .consulta-form {
    padding: 25px 20px;

    border-radius: 12px;
  }

  .consulta-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .campo-full {
    grid-column: auto;
  }

  .tipo-cliente {
    flex-direction: column;
  }

  .tipo-option span {
    min-height: 48px;
  }

}


/* =========================================
   PANTALLAS MUY CHICAS
========================================= */

@media (max-width: 400px) {

  .consulta-section {
    padding: 55px 14px;
  }

  .consulta-form {
    padding: 22px 16px;
  }

  .consulta-header h2 {
    font-size: 28px;
  }

}

/* =========================================
   TÉRMINOS Y CONDICIONES
========================================= */

.legal-section {
  width: 100%;
  padding: 100px 24px 120px;

  background: #ffffff;
}

.legal-container {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.legal-header {
  max-width: 760px;

  margin: 0 auto 90px;

  text-align: center;
}

.legal-eyebrow {
  display: block;

  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 1.5px;

  color: #6b7280;
}

.legal-header h1 {
  margin: 10px 0 18px;


  font-size: 20px;
  line-height: 1.12;

  font-weight: 600;

  color: #0A2A5E;
}

.legal-header p {
  max-width: 580px;

  margin: 0 auto;

  font-size: 16px;
  line-height: 1.7;

  color: #6b7280;
}

.legal-update {
  display: block;

  margin-top: 24px;

  font-size: 12px;

  color: #9ca3af;
}


/* =========================================
   LAYOUT
========================================= */

.legal-layout {
  display: grid;

  grid-template-columns: 220px minmax(0, 1fr);

  gap: 80px;

  align-items: start;
}


/* =========================================
   ÍNDICE
========================================= */

.legal-index {
  position: sticky;

  top: 110px;
}

.legal-index-title {
  display: block;

  margin-bottom: 16px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 1.5px;

  color: #9ca3af;
}

.legal-index nav {
  display: flex;

  flex-direction: column;
}

.legal-index a {
  padding: 10px 0;

  border-bottom: 1px solid #e8ecf3;

  text-decoration: none;

  font-size: 13px;

  color: #6b7280;

  transition:
    color .2s ease,
    padding-left .2s ease;
}

.legal-index a:hover {
  padding-left: 5px;

  color: #0A2A5E;
}

@media (max-width: 768px) {

  .legal-index {
    position: static;

    width: 100%;
    max-width: 100%;

    margin-left: 0;
    margin-right: 0;

    padding-left: 0;
    padding-right: 0;

    text-align: center;
  }

  .legal-index-title {
    display: block;

    width: 100%;

    margin: 0 0 16px 0;

    text-align: center;
  }

  .legal-index nav {
    display: flex;
    flex-direction: column;

    width: 100%;

    margin: 0;
    padding: 0;

    align-items: center;
  }

  .legal-index a {
    display: block;

    width: 90%;
    max-width: 320px;

    margin: 0 auto;
    padding: 10px 0;

    box-sizing: border-box;

    text-align: center;

    border-bottom: 1px solid #e8ecf3;
  }

  .legal-index a:hover {
    padding-left: 0;
  }

}

/* =========================================
   CONTENIDO
========================================= */

.legal-content {
  min-width: 0;
}


/* =========================================
   BLOQUES
========================================= */

.legal-block {
  padding: 0 0 55px;

  margin-bottom: 55px;

  border-bottom: 1px solid #dce3ef;

  scroll-margin-top: 120px;
}

.legal-block h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.25;

  font-weight: 600;

  color: #0A2A5E;
}

.legal-block p {
  max-width: 720px;

  margin: 0 0 16px;

  font-size: 15px;
  line-height: 1.8;

  color: #626976;
}

.legal-block p:last-child {
  margin-bottom: 0;
}


/* =========================================
   CONTACTO
========================================= */

.legal-contact {
  padding: 20px 0 10px;
}

.legal-contact-eyebrow {
  display: block;

  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1.5px;

  color: #aab1cb;
}

.legal-contact h3 {
  margin: 0 0 12px;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 600;

  color: #0A2A5E;
}

.legal-contact p {
  max-width: 600px;

  margin: 0 0 22px;

  font-size: 15px;
  line-height: 1.7;

  color: #6b7280;
}

.legal-contact a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 16px;

  border-radius: 8px;

  background: #0A2A5E;

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition:
    background .2s ease,
    transform .2s ease;
}

.legal-contact a span {
  font-size: 17px;
}

.legal-contact a:hover {
  background: #101B2D;

  transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

  .legal-section {
    padding: 80px 20px 90px;
  }

  .legal-header {
    margin-bottom: 65px;
    text-align: center;
  }

  .legal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px;

    width: 100%;
    margin: 0 auto;

    justify-items: center;
  }

  /* =========================================
     ÍNDICE
  ========================================= */

  .legal-index {
    position: static;

    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
  }

  .legal-index-title {
    display: block;
    width: 100%;

    text-align: center;

    margin-bottom: 16px;
  }

  .legal-index nav {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 25px;
    row-gap: 0;

    width: 100%;

    margin: 0 auto;
  }

  .legal-index a {
    display: block;

    width: 100%;

    padding: 10px 0;

    text-align: center;

    box-sizing: border-box;
  }

  .legal-index a:hover {
    padding-left: 0;
  }

  /* =========================================
     CONTENIDO
  ========================================= */

  .legal-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
  }

}


@media (max-width: 600px) {

  .legal-section {
    padding: 60px 16px 75px;
  }

  .legal-header {
    margin-bottom: 50px;

    text-align: center;
  }

  .legal-header h1 {
    font-size: 34px;
    text-align: center;
  }

  .legal-header p {
    font-size: 14px;
    text-align: center;
  }

  /* =========================================
     ÍNDICE MOBILE
  ========================================= */

  .legal-index {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;

    text-align: center;
  }

  .legal-index nav {
    display: grid;

    grid-template-columns: 1fr;

    width: 100%;

    margin: 0 auto;
  }

  .legal-index a {
    width: 100%;
    max-width: 320px;

    margin: 0 auto;

    text-align: center;

    padding: 11px 0;

    box-sizing: border-box;
  }

  /* =========================================
     BLOQUES LEGALES
  ========================================= */

  .legal-content {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;
  }

  .legal-block {
    width: 100%;

    padding-bottom: 40px;
    margin-bottom: 40px;

    text-align: center;
  }

  .legal-block h2 {
    font-size: 25px;
    text-align: center;
  }

  .legal-block p {
    font-size: 14px;
    line-height: 1.75;
    text-align: center;
  }

  .legal-contact {
    width: 100%;
    text-align: center;
  }

  .legal-contact h3 {
    font-size: 25px;
    text-align: center;
  }

}

/* =========================================
   HOME — EL ESTUDIO
========================================= */

.home-estudio {
  width: 100%;
  padding: 120px 0;
  background: #f4f6fb;
}

.home-estudio-grid {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 90px;
}


/* =========================================
   CONTENT
========================================= */

.home-estudio-content {
  max-width: 560px;
}

.home-estudio-content .section-tag {
  display: inline-block;

  margin-bottom: 24px;


  font-size: 11px;
  font-weight: 700;

  letter-spacing: .16em;
  text-transform: uppercase;

  color: #25387A;
}

.home-estudio-content h2 {
  margin: 0;


  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;

  line-height: 1.08;
  letter-spacing: -0.045em;

  color: #18213f;
}

.home-estudio-content > p {
  max-width: 500px;

  margin: 28px 0 0;

  font-size: 16px;
  line-height: 1.8;

  color: #69728a;
}


/* =========================================
   POINTS
========================================= */

.home-estudio-points {
  display: flex;
  flex-direction: column;

  gap: 14px;

  margin-top: 32px;
}

.home-estudio-point {
  display: flex;
  align-items: center;

  gap: 12px;
}

.home-estudio-point span {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(37, 56, 122, .08);

  color: #25387A;

  font-size: 12px;
  font-weight: 700;
}

.home-estudio-point p {
  margin: 0;


  font-size: 14px;
  font-weight: 500;

  color: #3e465b;
}


/* =========================================
   LINK
========================================= */

.home-estudio-link {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-top: 38px;


  font-size: 14px;
  font-weight: 700;

  color: #25387A;

  text-decoration: none;

  transition:
    gap .3s ease,
    opacity .3s ease;
}

.home-estudio-link span {
  font-size: 18px;

  transition: transform .3s ease;
}

.home-estudio-link:hover {
  gap: 16px;
}

.home-estudio-link:hover span {
  transform: translateX(3px);
}


/* =========================================
   VISUAL
========================================= */

.home-estudio-visual {
  min-height: 500px;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  padding: 40px;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      #101B2D 0%,
      #101B2D 100%
    );

  position: relative;
  overflow: hidden;
}


/* detalle decorativo */

.home-estudio-visual::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.15);
}

.home-estudio-visual::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  bottom: -260px;
  left: -160px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.08);
}


/* =========================================
   CARD
========================================= */

.home-estudio-card {
  position: relative;
  z-index: 2;

  width: 100%;

  padding: 34px;

  border: 1px solid rgba(255,255,255,.16);

  border-radius: 24px;

  background: rgba(255,255,255,.09);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 20px 60px rgba(0,0,0,.15);
}

.home-estudio-card-label {
  display: block;

  margin-bottom: 55px;


  font-size: 10px;
  font-weight: 700;

  letter-spacing: .18em;

  color: rgba(255,255,255,.65);
}

.home-estudio-card strong {
  display: block;

  font-size: 30px;
  line-height: 1.15;

  letter-spacing: -.035em;

  color: #fff;
}

.home-estudio-card small {
  display: block;

  margin-top: 18px;

  font-size: 13px;

  color: rgba(255,255,255,.6);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .home-estudio {
    padding: 80px 20px;
  }

  .home-estudio-grid {
    grid-template-columns: 1fr;

    gap: 50px;

    text-align: center;
  }

  .home-estudio-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .home-estudio-content h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .home-estudio-content > p {
    margin-left: auto;
    margin-right: auto;

    font-size: 15px;
    line-height: 1.7;
  }

  .home-estudio-points {
    align-items: center;
  }

  .home-estudio-point {
    justify-content: center;
  }

  .home-estudio-link {
    margin-top: 32px;
  }

  .home-estudio-visual {
    min-height: 360px;

    padding: 20px;

    border-radius: 26px;
  }

  .home-estudio-card {
    padding: 26px;

    text-align: left;
  }

  .home-estudio-card-label {
    margin-bottom: 40px;
  }

  .home-estudio-card strong {
    font-size: 25px;
  }

}

/* =========================================
   HOME — AGENDA
========================================= */

.home-agenda {
  width: 100%;
  padding: 110px 0;
  background-color: #ffffff;

  background-image:
    radial-gradient(
      circle,
      rgba(10, 42, 94, 0.16) 1.2px,
      transparent 1.4px
    );

  background-size: 22px 22px;
}

.home-agenda .container {
  max-width: 1180px;
  margin: 0 auto;
}


/* =========================================
   CARD
========================================= */

.home-agenda-card {
  position: relative;

  display: grid;
  grid-template-columns: 1.3fr .7fr;

  min-height: 430px;

  overflow: hidden;

  border-radius: 32px;

  background: #101B2D;

  box-shadow:
    0 30px 80px rgba(37, 56, 122, .16);
}


/* =========================================
   DECORACIÓN
========================================= */

.home-agenda-card::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -220px;
  top: -280px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.12);
}

.home-agenda-card::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  left: -220px;
  bottom: -240px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.08);
}


/* =========================================
   CONTENIDO
========================================= */

.home-agenda-content {
  position: relative;
  z-index: 2;

  padding: 70px;
}

.home-agenda-content .section-tag {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;

  color: rgba(255,255,255,.6);
}

.home-agenda-content h2 {
  margin: 0;

  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;

  line-height: 1.05;
  letter-spacing: -.05em;

  color: #fff;
}

.home-agenda-content p {
  max-width: 500px;

  margin: 28px 0 0;

  font-size: 16px;
  line-height: 1.75;

  color: rgba(255,255,255,.7);
}


/* =========================================
   BOTÓN
========================================= */

.home-agenda-button {
  display: inline-flex;
  align-items: center;

  gap: 14px;

  margin-top: 35px;

  padding: 15px 22px;

  border-radius: 100px;

  background: #fff;

  color: #101B2D;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    gap .3s ease;
}

.home-agenda-button span {
  font-size: 18px;

  transition: transform .3s ease;
}

.home-agenda-button:hover {
  transform: translateY(-2px);

  gap: 18px;

  box-shadow:
    0 12px 30px rgba(0,0,0,.18);
}

.home-agenda-button:hover span {
  transform: translateX(3px);
}


/* =========================================
   BLOQUE LATERAL
========================================= */

.home-agenda-side {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px;

  border-left: 1px solid rgba(255,255,255,.12);

  background: rgba(255,255,255,.04);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* =========================================
   ICONO
========================================= */

.home-agenda-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  border-radius: 16px;

  border: 1px solid rgba(255,255,255,.16);

  background: rgba(255,255,255,.08);

  color: #fff;

  font-size: 25px;
}


/* =========================================
   TEXTO LATERAL
========================================= */

.home-agenda-side strong {
  font-size: 25px;
  font-weight: 600;

  line-height: 1.2;
  letter-spacing: -.03em;

  color: #fff;
}

.home-agenda-side small {
  margin-top: 18px;

  font-size: 13px;
  line-height: 1.7;

  color: rgba(255,255,255,.55);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .home-agenda {
    padding: 75px 20px;
  }

  .home-agenda-card {
    grid-template-columns: 1fr;

    min-height: auto;

    border-radius: 26px;
  }


  /* CONTENIDO */

  .home-agenda-content {
    padding: 48px 28px 42px;

    text-align: center;
  }

  .home-agenda-content h2 {
    font-size: 42px;
  }

  .home-agenda-content p {
    margin-left: auto;
    margin-right: auto;

    font-size: 15px;
    line-height: 1.7;
  }


  /* BOTÓN */

  .home-agenda-button {
    margin-top: 30px;
  }


  /* LATERAL */

  .home-agenda-side {
    align-items: center;

    padding: 38px 28px 45px;

    text-align: center;

    border-left: none;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .home-agenda-icon {
    margin-bottom: 20px;
  }

  .home-agenda-side strong {
    font-size: 22px;
  }

}

/* =========================================
   HOME — ACTUALIDAD
========================================= */

.home-actualidad {
  width: 100%;
  padding: 110px 0;
  background: #f4f6fb;
}

.home-actualidad .container {
  max-width: 1180px;
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.home-actualidad-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 50px;
}

.home-actualidad-header .section-tag {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;

  color: #25387A;
}

.home-actualidad-header h2 {
  margin: 0;

  font-size: clamp(38px, 4vw, 54px);
  font-weight: 600;

  line-height: 1.08;
  letter-spacing: -.045em;

  color: #18213f;
}


/* =========================================
   LINK HEADER
========================================= */

.home-actualidad-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding-bottom: 6px;

  border-bottom: 1px solid rgba(37,56,122,.25);

  font-size: 13px;
  font-weight: 700;

  color: #101B2D;

  text-decoration: none;

  white-space: nowrap;

  transition:
    gap .3s ease,
    border-color .3s ease;
}

.home-actualidad-link span {
  font-size: 17px;

  transition: transform .3s ease;
}

.home-actualidad-link:hover {
  gap: 14px;

  border-color: #CCC;
}

.home-actualidad-link:hover span {
  transform: translateX(3px);
}


/* =========================================
   GRID
========================================= */

.home-actualidad-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


/* =========================================
   CARD
========================================= */

.home-actualidad-card {
  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 34px;

  border: 1px solid #e3e7f0;
  border-radius: 26px;

  background: #fff;

  box-shadow:
    0 10px 35px rgba(31,42,68,.04);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.home-actualidad-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 20px 50px rgba(31,42,68,.09);
}


/* =========================================
   ICONO
========================================= */

.home-actualidad-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 45px;

  border-radius: 14px;

  background: rgba(37,56,122,.07);

  color: #25387A;

  font-size: 20px;
}

.home-actualidad-label {
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: .15em;

  color: #8b94a9;
}


/* =========================================
   TEXTO
========================================= */

.home-actualidad-card h3 {
  margin: 0;

  font-size: 25px;
  font-weight: 600;

  line-height: 1.2;
  letter-spacing: -.03em;

  color: #18213f;
}

.home-actualidad-card p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.75;

  color: #737c91;
}


/* =========================================
   LINK CARD
========================================= */

.home-actualidad-card > a {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-top: auto;
  padding-top: 30px;
  font-size: 13px;
  font-weight: 700;

  color: #25387A;

  text-decoration: none;
}

.home-actualidad-card > a span {
  font-size: 17px;

  transition: transform .3s ease;
}

.home-actualidad-card > a:hover span {
  transform: translateX(4px);
}


/* =========================================
   CTA CARD
========================================= */

.home-actualidad-card-cta {
  background: #101B2D;
  border-color: #25387A;
}

.home-actualidad-card-cta .home-actualidad-icon {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.home-actualidad-card-cta .home-actualidad-label {
  color: rgba(255,255,255,.55);
}

.home-actualidad-card-cta h3 {
  color: #fff;
}

.home-actualidad-card-cta p {
  color: rgba(255,255,255,.65);
}

.home-actualidad-card-cta > a {
  color: #fff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .home-actualidad {
    padding: 75px 20px;
  }

  .home-actualidad-header {
    flex-direction: column;
    align-items: center;

    text-align: center;

    margin-bottom: 35px;
  }

  .home-actualidad-header h2 {
    font-size: 36px;
  }

  .home-actualidad-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .home-actualidad-card {
    min-height: 330px;

    padding: 28px;

    text-align: center;
    align-items: center;
  }

  .home-actualidad-icon {
    margin-bottom: 30px;
  }

  .home-actualidad-card h3 {
    font-size: 23px;
  }

  .home-actualidad-card p {
    max-width: 320px;
  }

  .home-actualidad-card > a {
    margin-top: 28px;
    padding-top: 0;
  }

}

/* =========================================
   ESTRUCTURA VISUAL
========================================= */

.estructura-section {
  width: 100%;

  padding: 170px 24px 190px;

  background: #f7f8fa;

  background-image:
    radial-gradient(
      circle,
      rgba(37, 56, 122, .18) 1px,
      transparent 1.2px
    );

  background-size: 27px 27px;

  overflow: hidden;
}


/* =========================================
   CARD / PIZARRA
========================================= */

.estructura-board {
  position: relative;

  width: 100%;
  max-width: 1240px;

  min-height: 620px;

  margin: 0 auto;

  overflow: hidden;

  border-radius: 34px;

  background: #ffffff;

  box-shadow:
    0 30px 90px rgba(15, 35, 70, .055),
    0 2px 8px rgba(15, 35, 70, .025);

  isolation: isolate;
}


/* =========================================
   CAPA SUAVE
========================================= */

.estructura-board::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(37, 56, 122, .025),
      transparent 45%
    );

  pointer-events: none;

  z-index: -1;
}


/* =========================================
   CONTENIDO
========================================= */

.estructura-content {
  position: relative;

  width: 100%;

  max-width: 1050px;

  margin: 0 auto;

  padding: 90px 70px 95px;

  text-align: center;
}


/* =========================================
   EYEBROW
========================================= */

.estructura-eyebrow {
  display: inline-block;

  margin-bottom: 22px;

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: .18em;

  text-transform: uppercase;

  color: #25387A;
}


/* =========================================
   TÍTULO
========================================= */

.estructura-content h2 {
  margin: 0;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(38px, 4.2vw, 58px);

  line-height: 1.08;

  letter-spacing: -.045em;

  font-weight: 600;

  color: #17213B;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.estructura-intro {
  max-width: 590px;

  margin: 25px auto 0;

  font-family: "Inter", sans-serif;

  font-size: 16px;

  line-height: 1.75;

  font-weight: 400;

  color: #697386;
}


/* =========================================
   GRID
========================================= */

.estructura-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  max-width: 900px;

  margin: 75px auto 0;

  border-top: 1px solid #e8ebf1;

  border-left: 1px solid #e8ebf1;
}


/* =========================================
   ITEM
========================================= */

.estructura-item {
  position: relative;

  min-height: 170px;

  padding: 38px 42px;

  text-align: left;

  border-right: 1px solid #e8ebf1;

  border-bottom: 1px solid #e8ebf1;

  background: rgba(255, 255, 255, .65);

  transition:
    background .35s ease,
    transform .35s ease;
}


/* =========================================
   HOVER
========================================= */

.estructura-item:hover {
  background: #fbfcfe;

  transform: translateY(-2px);
}


/* =========================================
   CONTENIDO ITEM
========================================= */

.estructura-item-content {
  max-width: 340px;
}


/* =========================================
   TÍTULO ITEM
========================================= */

.estructura-item h3 {
  margin: 0 0 12px;

  font-family: "Montserrat", sans-serif;

  font-size: 22px;

  line-height: 1.2;

  font-weight: 600;

  letter-spacing: -.025em;

  color: #25387A;
}


/* =========================================
   TEXTO ITEM
========================================= */

.estructura-item p {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 14px;

  line-height: 1.7;

  color: #737b8c;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .estructura-section {
    padding: 130px 20px 150px;
  }


  .estructura-board {
    min-height: auto;

    border-radius: 28px;
  }


  .estructura-content {
    padding: 75px 45px 80px;
  }


  .estructura-content h2 {
    font-size: clamp(36px, 6vw, 48px);
  }


  .estructura-grid {
    margin-top: 60px;
  }


  .estructura-item {
    padding: 34px 30px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .estructura-section {
    padding: 100px 14px 120px;

    background-size: 22px 22px;
  }


  .estructura-board {
    width: 100%;

    min-height: auto;

    border-radius: 24px;
  }


  .estructura-content {
    padding: 65px 22px 70px;
  }


  /* -----------------------------------------
     EYEBROW
  ----------------------------------------- */

  .estructura-eyebrow {
    margin-bottom: 18px;

    font-size: 10px;

    letter-spacing: .16em;
  }


  /* -----------------------------------------
     TÍTULO
  ----------------------------------------- */

  .estructura-content h2 {
    font-size: clamp(32px, 9vw, 42px);

    line-height: 1.08;

    letter-spacing: -.04em;
  }


  /* -----------------------------------------
     DESCRIPCIÓN
  ----------------------------------------- */

  .estructura-intro {
    max-width: 340px;

    margin-top: 22px;

    font-size: 14px;

    line-height: 1.7;
  }


  /* -----------------------------------------
     GRID
  ----------------------------------------- */

  .estructura-grid {
    grid-template-columns: 1fr;

    margin-top: 50px;

    border-left: 0;
  }


  /* -----------------------------------------
     ITEM
  ----------------------------------------- */

  .estructura-item {
    min-height: auto;

    padding: 30px 24px;

    text-align: center;

    border-right: 0;
  }


  .estructura-item-content {
    max-width: 320px;

    margin: 0 auto;
  }


  /* -----------------------------------------
     TÍTULO ITEM
  ----------------------------------------- */

  .estructura-item h3 {
    margin-bottom: 10px;

    font-size: 20px;
  }


  /* -----------------------------------------
     TEXTO ITEM
  ----------------------------------------- */

  .estructura-item p {
    font-size: 13px;

    line-height: 1.65;
  }


  /* -----------------------------------------
     DESACTIVAR HOVER EN MOBILE
  ----------------------------------------- */

  .estructura-item:hover {
    transform: none;

    background: rgba(255, 255, 255, .65);
  }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 380px) {

  .estructura-section {
    padding: 85px 12px 105px;
  }


  .estructura-board {
    border-radius: 22px;
  }


  .estructura-content {
    padding: 55px 18px 60px;
  }


  .estructura-content h2 {
    font-size: 30px;
  }


  .estructura-intro {
    font-size: 13px;
  }


  .estructura-grid {
    margin-top: 42px;
  }


  .estructura-item {
    padding: 27px 18px;
  }

}

.footer p a {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;

  color: inherit;
  text-decoration: none;

  transition: opacity .25s ease;
}

.footer p a:hover {
  opacity: .7;
}

 /* =========================================================
    PRINCIPIOS
 ========================================================= */

 .estudio-principios {

  width: min(100%, 1120px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


/* =========================================================
   CARD PRINCIPIO
========================================================= */

.principio {

  position: relative;

  min-height: 230px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 28px;

  background: #ffffff;

  border: 1px solid #dce3ef;

  border-radius: 18px;

  cursor: pointer;

  outline: none;

  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease,
    border-color .35s ease;
}


.principio:hover {

  transform: translateY(-4px);

  border-color: #cbd5e3;

  box-shadow:
    0 20px 45px rgba(10,42,94,.08);
}


.principio:focus-visible {

  border-color: #0a2a5e;

  box-shadow:
    0 0 0 3px rgba(10,42,94,.10);
}


/* =========================================================
   TEXTO SUPERIOR
========================================================= */

.principio-number {

  display: block;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #9aa4b3;
}


/* =========================================================
   CONTENIDO
========================================================= */

.principio-content {

  margin-top: auto;

  padding-top: 45px;
}


.principio-content h3 {

  margin: 0 0 10px;

  font-size: 25px;

  line-height: 1.1;

  font-weight: 500;

  letter-spacing: -.7px;

  color: #0a2a5e;
}


.principio-content p {

  max-width: 280px;

  margin: 0;

  font-size: 13px;

  line-height: 1.6;

  color: #667286;
}


/* =========================================================
   FLECHA
========================================================= */

.principio-arrow {

  position: absolute;

  right: 25px;

  bottom: 23px;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  font-size: 25px;

  line-height: 1;

  font-weight: 300;

  color: #0a2a5e;

  pointer-events: none;

  transition:
    transform .3s ease;
}


.principio:hover .principio-arrow {

  transform: translateX(4px);
}


/* =========================================================
   MODAL
========================================================= */

.principio-modal {

  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 24px;

  background:
    rgba(10, 42, 94, .32);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .35s ease,
    visibility .35s ease;
}


/* =========================================================
   MODAL ACTIVO
========================================================= */

.principio-modal.is-active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   CARD MODAL
========================================================= */

.principio-modal-card {

  position: relative;

  width: min(100%, 620px);

  max-height: min(720px, 90vh);

  overflow-y: auto;

  padding: clamp(32px, 5vw, 52px);

  background: #ffffff;

  border: 1px solid #dce3ef;

  border-radius: 22px;

  box-shadow:
    0 35px 100px rgba(10,42,94,.18),
    0 10px 35px rgba(10,42,94,.08);

  transform:
    translateY(25px)
    scale(.96);

  transition:
    transform .45s
    cubic-bezier(.22,1,.36,1);
}


.principio-modal.is-active
.principio-modal-card {

  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   CERRAR
========================================================= */

.principio-modal-close {

  position: absolute;

  top: 18px;

  right: 20px;

  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: #f4f6f9;

  color: #7c8798;

  font-size: 24px;

  font-weight: 300;

  line-height: 1;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}


.principio-modal-close:hover {

  background: #e9edf3;

  color: #0a2a5e;

  transform: rotate(90deg);
}


/* =========================================================
   EYEBROW
========================================================= */

.principio-modal-eyebrow {

  display: block;

  margin-bottom: 14px;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #8b95a7;
}


/* =========================================================
   TÍTULO MODAL
========================================================= */

.principio-modal-card h2 {

  margin: 0 0 18px;

  font-size: clamp(32px, 5vw, 46px);

  line-height: 1;

  font-weight: 500;

  letter-spacing: -1.5px;

  color: #0a2a5e;
}


/* =========================================================
   INTRO
========================================================= */

.principio-modal-intro {

  max-width: 500px;

  margin: 0 0 30px;

  font-size: clamp(17px, 2.5vw, 20px);

  line-height: 1.45;

  font-weight: 500;

  color: #445166;
}


/* =========================================================
   CUERPO
========================================================= */

.principio-modal-body {

  display: flex;

  flex-direction: column;

  gap: 17px;

  padding-top: 25px;

  border-top: 1px solid #e5e9ef;
}


.principio-modal-body p {

  margin: 0;

  font-size: 14px;

  line-height: 1.7;

  color: #667286;
}


/* =========================================================
   DESTACADO
========================================================= */

.principio-modal-highlight {

  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-top: 32px;

  padding: 22px 24px;

  background: #f5f7fa;

  border-radius: 14px;

  border: 1px solid #0a2a5e;
}


.principio-modal-highlight span {

  font-size: 7px;

  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: #929cad;
}


.principio-modal-highlight strong {

  max-width: 470px;

  font-size: 15px;

  line-height: 1.5;

  font-weight: 500;

  color: #0a2a5e;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.principio-modal-card::-webkit-scrollbar {

  width: 5px;
}


.principio-modal-card::-webkit-scrollbar-track {

  background: transparent;
}


.principio-modal-card::-webkit-scrollbar-thumb {

  background: #d6dce5;

  border-radius: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  .estudio-principios {

    grid-template-columns:
      1fr;

    gap: 14px;
  }


  .principio {

    min-height: 190px;
  }


  .principio-content {

    padding-top: 35px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .estudio-principios {

    width: calc(100% - 32px);

    gap: 12px;
  }


  .principio {

    min-height: 180px;

    padding: 24px;

    border-radius: 16px;
  }


  .principio-content {

    padding-top: 30px;
  }


  .principio-content h3 {

    font-size: 23px;
  }


  .principio-content p {

    font-size: 12px;

    line-height: 1.55;
  }


  .principio-arrow {

    right: 20px;

    bottom: 19px;
  }


  /* =========================
     MODAL MOBILE
  ========================= */

  .principio-modal {

    padding: 14px;
  }


  .principio-modal-card {

    max-height: 92vh;

    padding:
      34px
      24px
      28px;

    border-radius: 18px;
  }


  .principio-modal-close {

    top: 14px;

    right: 14px;

    width: 32px;

    height: 32px;

    font-size: 22px;
  }


  .principio-modal-eyebrow {

    font-size: 7px;

    letter-spacing: 1.6px;
  }


  .principio-modal-card h2 {

    margin-bottom: 15px;

    font-size: 34px;
  }


  .principio-modal-intro {

    margin-bottom: 24px;

    font-size: 16px;
  }


  .principio-modal-body {

    gap: 15px;

    padding-top: 22px;
  }


  .principio-modal-body p {

    font-size: 13px;

    line-height: 1.65;
  }


  .principio-modal-highlight {

    margin-top: 26px;

    padding: 18px;
  }


  .principio-modal-highlight strong {

    font-size: 14px;
  }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media (max-width: 430px) {

  .estudio-principios {

    width: calc(100% - 24px);
  }


  .principio {

    min-height: 170px;

    padding: 21px;
  }


  .principio-content h3 {

    font-size: 21px;
  }


  .principio-content p {

    font-size: 11px;
  }

}