
/* =========================================================
   AZ CONTABLE
   ESTUDIO — SISTEMA VISUAL
========================================================= */

.estudio-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: #101b2d;
}


/* =========================================================
   ENTRADA AL ESTUDIO
========================================================= */

/* =========================================================
   ENTRADA AL ESTUDIO
========================================================= */

.estudio-hero {

  position: relative;

  width: 100%;

  min-height: 100svh;

  padding:
    clamp(50px, 7vw, 90px)
    20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #ffffff;

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

  background-size: 22px 22px;

  background-position: center;

}





/* =========================================================
   PAPEL / DOCUMENTO — LIBRETA ANILLADA
========================================================= */

.estudio-paper {
    position: relative;
    z-index: 2;
  
    width: min(100%, 760px);
  
    padding: clamp(28px, 4vw, 42px);
    padding-left: clamp(48px, 6vw, 68px);
  
    background: #ffffff;
  
    border: 1px solid #dce3ef;
  
    border-radius: 8px;
  
    box-shadow:
      0 40px 100px rgba(10,42,94,.10),
      0 10px 35px rgba(10,42,94,.06);
  
    opacity: 0;
  
    transform:
      translateY(30px)
      scale(.985);
  
    animation:
      paperEnter
      1s
      cubic-bezier(.22,1,.36,1)
      forwards;
  
    overflow: visible;
  }
  
  /* =========================================================
     ANIMACIÓN ENTRADA PAPEL
  ========================================================= */
  
  @keyframes paperEnter {
  
    to {
      opacity: 1;
  
      transform:
        translateY(0)
        scale(1);
    }
  
  }
  
  
  /* =========================================================
     ANILLADO
  ========================================================= */
  
  .estudio-paper::before {
    content: "";
  
    position: absolute;
  
    top: 28px;
    bottom: 28px;
  
    left: -10px;
  
    width: 18px;
  
    background:
      repeating-linear-gradient(
        to bottom,
  
        transparent 0,
        transparent 23px,
  
        #aeb5bf 24px,
        #d9dde2 27px,
  
        transparent 28px,
        transparent 47px
      );
  
    filter:
      drop-shadow(
        1px 2px 2px rgba(0,0,0,.12)
      );
  
    z-index: 3;
  
    pointer-events: none;
  }
  
  
  /* =========================================================
     AGUJEROS DEL ANILLADO
  ========================================================= */
  
  .estudio-paper::after {
    content: "";
  
    position: absolute;
  
    top: 30px;
    bottom: 30px;
  
    left: 8px;
  
    width: 7px;
  
    background:
      repeating-linear-gradient(
        to bottom,
  
        #ffffff 0,
        #ffffff 17px,
  
        #c8ced7 18px,
        #c8ced7 21px,
  
        #ffffff 22px,
        #ffffff 42px
      );
  
    border-radius: 50%;
  
    box-shadow:
      inset 1px 0 2px rgba(0,0,0,.08);
  
    z-index: 4;
  
    pointer-events: none;
  }
  
  
  /* =========================================================
     HEADER DOCUMENTO
  ========================================================= */
  
  .balance-header {
    display: flex;
  
    align-items: flex-start;
  
    justify-content: space-between;
  
    padding-bottom: 22px;
  
    border-bottom: 1px solid #e1e6ee;
  }
  
  
  .balance-brand {
    display: flex;
  
    flex-direction: column;
  
    gap: 3px;
  }
  
  
  .balance-brand span {
    font-size: 27px;
  
    line-height: 1;
  
    font-weight: 600;
  
    letter-spacing: -.8px;
  
    color: #0a2a5e;
  }
  
  
  .balance-brand small {
    font-size: 8px;
  
    letter-spacing: 2px;
  
    color: #7c8798;
  }
  
  
  .balance-year {
    font-size: 10px;
  
    letter-spacing: 1px;
  
    color: #8b95a7;
  }
  
  
  /* =========================================================
     TÍTULO
  ========================================================= */
  
  .balance-title {
    padding: 30px 0 25px;
  }
  
  
  .balance-title span {
    display: block;
  
    margin-bottom: 8px;
  
    font-size: 8px;
  
    font-weight: 500;
  
    letter-spacing: 2px;
  
    color: #929cad;
  }
  
  
  .balance-title h1 {
    margin: 0;
  
    font-size: clamp(28px, 4vw, 36px);
  
    line-height: 1.1;
  
    font-weight: 500;
  
    letter-spacing: -.8px;
  
    color: #0a2a5e;
  }
  
  
  /* =========================================================
     TABLA
  ========================================================= */
  
  .balance-table {
    width: 100%;
  }
  
  
  .balance-row {
    position: relative;
  
    min-height: 49px;
  
    display: grid;
  
    grid-template-columns:
      minmax(0, 1fr)
      minmax(80px, auto)
      minmax(80px, auto);
  
    column-gap: 20px;
  
    align-items: center;
  
    border-bottom: 1px solid #edf0f5;
  
    opacity: 0;
  
    transform: translateY(7px);
  
    animation:
      rowAppear
      .5s
      ease
      forwards;
  }
  
  
  .balance-row:nth-child(1) {
    animation-delay: 1.05s;
  }
  
  .balance-row:nth-child(2) {
    animation-delay: 1.2s;
  }
  
  .balance-row:nth-child(3) {
    animation-delay: 1.35s;
  }
  
  .balance-row:nth-child(4) {
    animation-delay: 1.5s;
  }
  
  .balance-row:nth-child(5) {
    animation-delay: 1.65s;
  }
  
  .balance-row:nth-child(6) {
    animation-delay: 1.8s;
  }
  
  .balance-row:nth-child(7) {
    animation-delay: 1.95s;
  }
  
  
  @keyframes rowAppear {
  
    to {
      opacity: 1;
  
      transform:
        translateY(0);
    }
  
  }
  
  
  /* =========================================================
     ENCABEZADO TABLA
  ========================================================= */
  
  .balance-heading {
    min-height: 34px;
  
    font-size: 7px;
  
    letter-spacing: 1.5px;
  
    color: #9aa4b3;
  
    border-bottom: 1px solid #cfd7e3;
  }
  
  
  .balance-heading span:nth-child(2),
  .balance-heading span:nth-child(3) {
    text-align: right;
  }
  
  
  /* =========================================================
     TEXTO TABLA
  ========================================================= */
  
  .balance-row > span:first-child {
    font-size: 13px;
  
    color: #445166;
  }
  
  
  .balance-number {
    font-size: 10px;
  
    color: #8d97a7;
  
    text-align: right;
  
    white-space: nowrap;
  }
  
  
  .balance-row strong {
    font-size: 10px;
  
    font-weight: 500;
  
    color: #0a2a5e;
  
    text-align: right;
  
    white-space: nowrap;
  }
  
  
  /* =========================================================
     TOTAL
  ========================================================= */
  
  .balance-total {
    min-height: 62px;
  
    margin-top: 4px;
  
    border-top: 1px solid #0a2a5e;
  
    border-bottom: none;
  }
  
  
  .balance-total > span:first-child {
    font-size: 10px;
  
    font-weight: 600;
  
    letter-spacing: 1px;
  
    color: #0a2a5e;
  }
  
  
  .balance-total strong {
    font-size: 12px;
  }
  
  
  /* =========================================================
     BIENVENIDA
  ========================================================= */
  
  .estudio-welcome {
    display: flex;
  
    align-items: center;
  
    gap: 14px;
  
    margin-top: 34px;
  
    text-align: center;
  
    opacity: 0;
  
    transform: translateY(10px);
  
    animation:
      welcomeAppear
      1s
      cubic-bezier(.22,1,.36,1)
      2.7s
      forwards;
  }
  
  
  @keyframes welcomeAppear {
  
    to {
      opacity: 1;
  
      transform:
        translateY(0);
    }
  
  }
  
  
  .estudio-welcome p {
    flex: 1;
  
    margin: 0;
  
    font-size: clamp(14px, 2.5vw, 19px);
  
    line-height: 1.3;
  
    font-weight: 500;
  
    letter-spacing: -.2px;
  
    color: #0a2a5e;
  }
  
  
  .welcome-line {
    flex: 1;
  
    height: 1px;
  
    background: #dce3ef;
  }
  
  
  /* =========================================================
     FOOTER DOCUMENTO
  ========================================================= */
  
  .balance-footer {
    display: flex;
  
    align-items: center;
  
    justify-content: space-between;
  
    gap: 20px;
  
    margin-top: 25px;
  
    padding-top: 15px;
  
    border-top: 1px solid #edf0f5;
  
    font-size: 7px;
  
    letter-spacing: 1.2px;
  
    color: #a0a9b7;
  }
  
  
  /* =========================================================
     RESPONSIVE
  ========================================================= */
  
  @media (max-width: 700px) {
  
    .estudio-paper {
  
      width: calc(100% - 24px);
  
      padding:
        26px
        20px
        30px
        48px;
  
      border-radius: 7px;
    }
  
  
    .estudio-paper::before {
  
      left: -8px;
  
      width: 16px;
  
      top: 24px;
      bottom: 24px;
    }
  
  
    .estudio-paper::after {
  
      left: 7px;
  
      top: 26px;
      bottom: 26px;
    }
  
  
    .balance-header {
  
      gap: 15px;
    }
  
  
    .balance-brand span {
  
      font-size: 23px;
    }
  
  
    .balance-year {
  
      font-size: 8px;
    }
  
  
    .balance-title {
  
      padding:
        25px
        0
        22px;
    }
  
  
    .balance-title h1 {
  
      font-size: 28px;
    }
  
  
    .balance-row {
  
      grid-template-columns:
        minmax(0, 1fr)
        minmax(65px, auto)
        minmax(65px, auto);
  
      column-gap: 10px;
  
      min-height: 46px;
    }
  
  
    .balance-row > span:first-child {
  
      font-size: 11px;
    }
  
  
    .balance-number,
    .balance-row strong {
  
      font-size: 9px;
    }
  
  
    .balance-heading {
  
      font-size: 6px;
  
      letter-spacing: 1px;
    }
  
  
    .balance-total {
  
      min-height: 56px;
    }
  
  
    .balance-footer {
  
      flex-direction: column;
  
      align-items: flex-start;
  
      gap: 8px;
  
      margin-top: 22px;
    }
  
  
    .estudio-welcome {
  
      margin-top: 28px;
  
      gap: 10px;
    }
  
  
    .estudio-welcome p {
  
      font-size: 15px;
    }
  
  }
  
  
  /* =========================================================
     MOBILE PEQUEÑO
  ========================================================= */
  
  @media (max-width: 430px) {
  
    .estudio-paper {
  
      width: calc(100% - 18px);
  
      padding:
        24px
        14px
        26px
        42px;
    }
  
  
    .estudio-paper::before {
  
      left: -7px;
  
      width: 14px;
    }
  
  
    .estudio-paper::after {
  
      left: 6px;
  
      width: 6px;
    }
  
  
    .balance-header {
  
      padding-bottom: 18px;
    }
  
  
    .balance-brand span {
  
      font-size: 21px;
    }
  
  
    .balance-brand small {
  
      font-size: 6px;
  
      letter-spacing: 1.5px;
    }
  
  
    .balance-year {
  
      font-size: 7px;
    }
  
  
    .balance-title h1 {
  
      font-size: 25px;
    }
  
  
    .balance-row {
  
      grid-template-columns:
        minmax(0, 1fr)
        60px
        65px;
  
      column-gap: 7px;
    }
  
  
    .balance-row > span:first-child {
  
      font-size: 10px;
    }
  
  
    .balance-number,
    .balance-row strong {
  
      font-size: 8px;
    }
  
  
    .balance-heading {
  
      font-size: 5.5px;
    }
  
  
    .balance-footer {
  
      font-size: 6px;
    }
  
  }
/* =========================================================
   CONTENIDO GENERAL
========================================================= */

.estudio-content {
  width: 100%;

  background: #101b2d;
}


/* =========================================================
   INTRODUCCIÓN
========================================================= */

.estudio-header {
  width: min(100%, 900px);

  margin: 0 auto;

  padding:
    clamp(90px, 10vw, 130px)
    24px
    clamp(80px, 9vw, 110px);

  text-align: center;

  border-bottom: 1px solid #e5e9ef;
}


.estudio-eyebrow {
  display: inline-block;

  margin-bottom: 20px;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2.2px;

  color: #fff;
}


.estudio-header h2 {
  margin: 0 auto 25px;

  max-width: 780px;

  font-size: clamp(36px, 5.5vw, 58px);

  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -1.8px;

  color: #fff;
}


.estudio-header p {
  max-width: 600px;

  margin: 0 auto;

  font-size: 16px;

  line-height: 1.75;

  color: #fff;
}



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



.estudio-principios {
  position: relative;

  width: min(100%, 1120px);
  margin: 0 auto;

  padding:
    90px 24px
    125px;

  display: grid;

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

  gap: 14px;

  background: transparent;
}

.estudio-principios::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;
  transform: translateX(-50%);

  width: 100vw;

  background: #fafbfc;

  z-index: -1;
}

@media (max-width: 768px) {
  .estudio-principios {
    padding-top: 130px;
  }
}

@media (max-width: 768px) {

  .estudio-principios {
    padding-top: 90px;
  }

  .estudio-principios > *:first-child {
    margin-top: 40px;
  }

}

.principio {
  position: relative;

  min-height: 270px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  background: #fff;

  border: 1px solid #e0e5ed;

  border-radius: 18px;

  overflow: hidden;

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


.principio:hover {
  transform: translateY(-5px);

  border-color: #cbd4e1;

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


/* línea superior */

.principio::before {
  content: "";

  position: absolute;

  top: 0;
  left: 30px;

  width: 38px;
  height: 1px;

  background: #0a2a5e;

  transition:
    width .35s ease;
}


.principio:hover::before {
  width: 65px;
}


/* =========================================================
   ETIQUETA
========================================================= */

.principio-number {
  position: absolute;

  top: 28px;
  left: 30px;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 1.6px;

  color: #9aa5b5;
}


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

.principio-content h3 {
  margin: 0 0 11px;

  font-size: 26px;

  line-height: 1.15;

  font-weight: 500;

  letter-spacing: -.5px;

  color: #0a2a5e;
}


.principio-content p {
  max-width: 290px;

  margin: 0;

  font-size: 13px;

  line-height: 1.7;

  color: #707b8d;
}


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

.principio-arrow {
  position: absolute;

  right: 27px;
  top: 24px;

  font-size: 17px;

  font-weight: 400;

  color: #0a2a5e;

  opacity: .5;

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


.principio:hover .principio-arrow {
  opacity: 1;

  transform:
    translate(3px,-3px);
}


/* =========================================================
   CONTADORA
========================================================= */

.contadora-section {
    width: min(100%, 1120px);
  
    margin: 0 auto;
  
    padding:
      clamp(140px, 15vw, 190px)
      24px
      clamp(100px, 11vw, 140px);
  
    display: grid;
  
    grid-template-columns:
      minmax(300px, 400px)
      minmax(0, 1fr);
  
    align-items: center;
  
    gap: clamp(55px, 8vw, 100px);


  }

  .contadora-section {
    width: 100%;
    margin: 0;
  
    padding:
      clamp(140px, 15vw, 190px)
      max(24px, calc((100vw - 1120px) / 2))
      clamp(100px, 11vw, 140px);
  
    display: grid;
  
    grid-template-columns:
      minmax(300px, 400px)
      minmax(0, 1fr);
  
    align-items: center;
  
    gap: clamp(55px, 8vw, 100px);
  
    background-color: #ffff;
  
    background-image:
      radial-gradient(
        circle,
        rgba(9, 21, 63, 0.12) 1px,
        transparent 1.2px
      );
  
    background-size: 20px 20px;
  }


/* =========================================================
   FOTO
========================================================= */

.contadora-image {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #f2f5f9;

  border-radius: 20px;

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


.contadora-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(10,42,94,.13),
      transparent 35%
    );

  pointer-events: none;
}


.contadora-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

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


.contadora-image:hover img {
  transform: scale(1.025);
}


/* =========================================================
   LABEL SOBRE FOTO
========================================================= */

.contadora-image-label {
  position: absolute;

  z-index: 2;

  left: 20px;
  bottom: 20px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 9px 12px;

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

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

  border-radius: 9px;

  backdrop-filter: blur(12px);

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

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


.contadora-image-label span {
  font-size: 13px;

  font-weight: 600;

  color: #0a2a5e;
}


.contadora-image-label small {
  font-size: 7px;

  letter-spacing: 1.2px;

  color: #697587;
}


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

.contadora-content {
  max-width: 570px;
  
}


.contadora-eyebrow {
  display: block;

  margin-bottom: 17px;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #8994a5;
}


.contadora-content h2 {
  margin: 0 0 9px;

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

  line-height: 1.12;

  font-weight: 500;

  letter-spacing: -1.2px;

  color: #0a2a5e;
}


.contadora-content h2 span {
  color: #101b2d;
}


.contadora-intro {
  margin: 0 0 30px;

  font-size: 14px;

  font-weight: 500;

  color: #7a8595;
}


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

.contadora-text {
  max-width: 550px;
}


.contadora-text p {
  margin: 0 0 17px;

  font-size: 15px;

  line-height: 1.78;

  color: #687386;
}


.contadora-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PARTE INFERIOR
========================================================= */

.contadora-bottom {
  margin-top: 34px;
}


/* =========================================================
   FIRMA
========================================================= */

.contadora-firma {
  display: flex;

  flex-direction: column;

  gap: 4px;

  padding-top: 20px;

  border-top: 1px solid #e1e6ed;
}


.contadora-firma strong {
  font-size: 16px;

  font-weight: 600;

  color: #0a2a5e;
}


.contadora-firma span {
  font-size: 11px;

  color: #8993a2;
}


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

.contadora-button {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 25px;

  padding: 13px 17px;

  border: 1px solid #101b2d;

  border-radius: 10px;

  background: #101b2d;

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 500;

  transition:
    transform .3s cubic-bezier(.22,1,.36,1),
    background .3s ease,
    box-shadow .3s ease;
}


.contadora-button b {
  font-size: 16px;

  font-weight: 400;

  transition:
    transform .3s ease;
}


.contadora-button:hover {
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(16,27,45,.14);
}


.contadora-button:hover b {
  transform: translateX(4px);
}


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

@media (max-width: 900px) {

  .estudio-historia {
    grid-template-columns: 150px minmax(0, 1fr);

    gap: 45px;
  }



  .principio {
    min-height: 220px;
  }


  .contadora-section {
    grid-template-columns:
      minmax(270px, 340px)
      minmax(0, 1fr);

    gap: 45px;
  }

}

@media (max-width: 700px) {

    .contadora-section {
      width: 100%;
      padding:
        130px
        20px
        90px;
  
      display: flex;
      flex-direction: column;
      gap: 42px;
  
      text-align: center;
    }
  
    .contadora-image {
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
    }
  
  }

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

@media (max-width: 700px) {

  /* -----------------------------------------
     HERO
  ----------------------------------------- */

  .estudio-hero {
    min-height: auto;

    padding:
      65px
      14px
      70px;
  }


  .estudio-paper {
    width: 100%;

    padding:
      22px
      15px
      20px;

    border-radius: 15px;
  }


  .balance-header {
    padding-bottom: 17px;
  }


  .balance-brand span {
    font-size: 23px;
  }


  .balance-brand small {
    font-size: 7px;

    letter-spacing: 1.7px;
  }


  .balance-year {
    font-size: 9px;
  }


  .balance-title {
    padding:
      23px
      0
      19px;
  }


  .balance-title span {
    font-size: 7px;
  }


  .balance-title h1 {
    font-size: 25px;
  }


  /* -----------------------------------------
     TABLA MOBILE
  ----------------------------------------- */

  .balance-row {

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

    column-gap: 8px;

    min-height: 44px;
  }


  .balance-heading {
    min-height: 30px;
  }


  .balance-heading span {
    font-size: 6px;
  }


  .balance-row > span:first-child {
    font-size: 10px;
  }


  .balance-number,
  .balance-row strong {
    font-size: 7px;
  }


  .balance-total {
    min-height: 52px;
  }


  .balance-total > span:first-child {
    font-size: 9px;
  }


  .balance-total strong {
    font-size: 8px;
  }


  /* -----------------------------------------
     WELCOME
  ----------------------------------------- */

  .estudio-welcome {
    gap: 8px;

    margin-top: 27px;
  }


  .estudio-welcome p {
    font-size: 13px;
  }


  .welcome-line {
    min-width: 10px;
  }


  /* -----------------------------------------
     FOOTER
  ----------------------------------------- */

  .balance-footer {
    margin-top: 19px;

    font-size: 5.5px;

    letter-spacing: .8px;
  }


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

  .estudio-header {
    width: 100%;

    padding:
      78px
      20px
      70px;
  }


  .estudio-eyebrow {
    margin-bottom: 15px;

    font-size: 8px;
  }


  .estudio-header h2 {
    max-width: 500px;

    font-size: 32px;

    line-height: 1.13;

    letter-spacing: -.8px;

    margin-bottom: 20px;
  }


  .estudio-header p {
    max-width: 500px;

    font-size: 14px;

    line-height: 1.75;
  }


  /* -----------------------------------------
     HISTORIA
  ----------------------------------------- */

  .estudio-historia {
    width: 100%;

    padding:
      70px
      20px
      75px;

    display: block;
  }


  .estudio-historia-label {
    margin-bottom: 38px;

    padding-top: 9px;
  }


  .estudio-historia-label span {
    font-size: 7px;
  }


  .estudio-historia-label p {
    font-size: 9px;
  }


  .estudio-historia-content {
    width: 100%;
  }


  .estudio-historia-content h3 {
    font-size: 28px;

    line-height: 1.2;

    margin-bottom: 25px;
  }


  .estudio-historia-content p {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 19px;
  }


  /* -----------------------------------------
     PRINCIPIOS
  ----------------------------------------- */

  .estudio-principios {
    width: 100%;

    padding:
      0
      20px
      80px;

    grid-template-columns: 1fr;

    gap: 12px;
  }


  .principio {
    min-height: 215px;

    padding: 25px;

    border-radius: 15px;
  }


  .principio-number {
    top: 23px;

    left: 25px;

    font-size: 7px;
  }


  .principio-content h3 {
    font-size: 23px;
  }


  .principio-content p {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.7;
  }


  .principio::before {
    left: 25px;

    width: 30px;
  }


  .principio-arrow {
    right: 23px;

    top: 20px;

    font-size: 15px;
  }


  .contadora-content {
    width: 100%;

    max-width: 580px;

    margin: 0 auto;

    text-align: center;
  }


  .contadora-eyebrow {
    margin-bottom: 14px;

    font-size: 8px;
  }


  .contadora-content h2 {
    font-size: 31px;

    line-height: 1.18;

    letter-spacing: -.7px;
  }


  .contadora-intro {
    margin-bottom: 26px;

    font-size: 13px;
  }


  .contadora-text {
    width: 100%;

    max-width: 540px;

    margin: 0 auto;
  }


  .contadora-text p {
    font-size: 14px;

    line-height: 1.78;

    margin-bottom: 17px;
  }


  .contadora-bottom {
    margin-top: 30px;
  }


  .contadora-firma {
    align-items: center;

    padding-top: 20px;
  }


  .contadora-firma strong {
    font-size: 16px;
  }


  .contadora-firma span {
    font-size: 10px;
  }


  .contadora-button {
    justify-content: center;

    margin-top: 24px;

    padding:
      12px
      15px;

    font-size: 12px;
  }

}


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

@media (max-width: 380px) {

  .estudio-hero {
    padding:
      45px
      9px
      55px;
  }


  .estudio-paper {
    padding:
      19px
      12px
      17px;
  }


  .balance-row {
    column-gap: 5px;
  }


  .balance-row > span:first-child {
    font-size: 9px;
  }


  .balance-number,
  .balance-row strong {
    font-size: 6.5px;
  }


  .estudio-welcome p {
    font-size: 11px;
  }


  .balance-footer {
    font-size: 5px;
  }


  .estudio-header {
    padding:
      65px
      17px
      60px;
  }


  .estudio-header h2 {
    font-size: 29px;
  }


  .estudio-header p {
    font-size: 13px;
  }


  .estudio-historia {
    padding:
      60px
      17px
      65px;
  }


  .estudio-historia-content h3 {
    font-size: 26px;
  }


  .estudio-principios {
    padding-left: 17px;
    padding-right: 17px;
  }


  .contadora-section {
    padding:
      0
      17px
      70px;
  }


  .contadora-content h2 {
    font-size: 28px;
  }


  .contadora-text p {
    font-size: 13px;
  }

}


/* =========================================================
   ACCESIBILIDAD / REDUCIR ANIMACIONES
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .estudio-paper,
  .balance-row,
  .estudio-welcome {

    animation: none;

    opacity: 1;

    transform: none;
  }


  .contadora-image img,
  .principio,
  .principio-arrow,
  .principio::before,
  .contadora-button,
  .contadora-button b {

    transition: none;
  }

}

