@font-face {
  font-family: 'Galano_Regular';
  src: url(../fonts/GalanoGrotesque-Regular.otf) format('opentype');
}

@font-face {
  font-family: 'Galano_Medium';
  src: url(../fonts/GalanoGrotesque-Medium.ttf) format('truetype');
}

@font-face {
  font-family: 'Galano_Light';
  src: url(../fonts/GalanoGrotesque-Light.ttf) format('truetype');
}

@font-face {
  font-family: 'Galano_Semibold';
  src: url(../fonts/GalanoGrotesque-SemiBold.ttf) format('truetype');
}

@font-face {
  font-family: 'Galano_Bold';
  src: url(../fonts/GalanoGrotesque-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Galano_Heavy';
  src: url(../fonts/GalanoGrotesque-Heavy.ttf) format('truetype');
}

@font-face {
  font-family: 'Galano_Italic';
  src: url(../fonts/GalanoGrotesque-Italic.ttf) format('truetype');
}


html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p,
input,
select,
label,
a,
small {
  font-family: 'Galano_Light', helvetica, sans-serif !important;
  color: #00184c;
}

b {
  font-family: 'Galano_Semibold', helvetica, sans-serif !important;
}

/* Clases para reemplazar estilos en línea */
.font-weight-500 {
  font-weight: 500;
}

.font-weight-400 {
  font-weight: 400;
}

/*/////////////////////////////////////////////////////*/

/* Basic resets */
:root {
  --space: 1rem;
  --black: #111;
  --white: #fff;
}

/* Header */
.site-header {
  background: linear-gradient(90deg, #f8fafc, #eef2ff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#hero .hero-left {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: left;
}

#hero .hero-right {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.hero-box {
  max-width: 520px;
  text-align: center;
}

/* Section "how" */

.how-item {
  background: #ffffff;
  padding: 1rem;
  width: 50%;
}

@media (min-width: 701px) {
  .items-how-mobile {
    display: none;
  }
}

@media (max-width: 700px) {
  .items-how-mobile {
    align-items: center;
    justify-content: center;
  }

  .items-how-desktop {
    display: none;
  }
}

.box-3 {
  text-align: center;
}

.img-doctor {
  position: relative;
  z-index: 3;
}

.box-4 {
  text-align: center;
}

/* Footer */
.site-footer {
  background: black;
  color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  gap: 1rem;
}

.footer-nav .footer-link {
  text-decoration: none;
  color: var(--black);
}

/* Footer styles */
.footer-inner {
  justify-content: center !important;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: .25rem;
    margin-top: .5rem;
  }

  .how-item {
    width: 90%;
  }

  /* Footer left mobile styles */
  .footer-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }
}

img {
  height: auto;
  display: block;
}




/* --- HOW section: grid with overlay blur --- */
.how-grid {
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* Left items occupy column 1; each is a row */
.how-left-item {
  grid-column: 1;
}

/* left second should go to row 2 */
.left-1 {
  grid-row: 1;
}

.left-2 {
  grid-row: 2;
}


.how-right-item {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: stretch;
}

/* Content box inside items */
.how-item-content {
  border-radius: 8px;
  height: 100%;
  padding: 0 !important;
}


.how-item-content p {
  margin-bottom: .5rem;
}


.how-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  border-radius: 25px;
  border: 1px solid #7b7b7b;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .7s cubic-bezier(.2, .9, .2, 1);
}

/* Inner card inside overlay */
.how-overlay-inner {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
  max-width: 420px;
  width: calc(100% - 2rem);
  box-sizing: border-box;
  overflow: hidden;
}

/* Icon size */
.how-overlay-icon {
  font-size: 36px;
}

.how-overlay-hidden {
  transform: translateY(110%);
}

@media (max-width: 767.98px) {
  .how-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .how-right-item {
    grid-column: 1;
    grid-row: auto;
  }

  .how-item-content {
    width: 100%;
  }

  .how-overlay-inner {
    max-width: 92%;
  }
}

#widget {
  background-color: #e5e5e5;
}


/* ---------- Header / Navbar tweaks ---------- */


.site-header {
  background: transparent !important;
  border-bottom: none;
}


.navbar-toggler {
  width: 44px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-collapse {
  flex-basis: auto !important;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 30px;
  height: 50px;
  background-image: url('/img/menu.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: none;
}


@media (max-width: 767.98px) {
  #mainNavbar {
    margin-top: .5rem;
    background: #d3d3d3;
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    gap: .25rem;
  }

  .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
}


@media (min-width: 768px) {
  .navbar-brand {
    margin-right: 1rem;
  }

  .navbar-nav .nav-link {
    color: inherit;
  }
}


#hero {
  overflow: hidden;
  position: relative;
  padding-bottom: 0 !important;
}


#hero h1 {
  text-align: left;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  font-size: 50px;
  line-height: 48px;
  color: white;
}

@media (max-width: 700px) {
  #hero h1 {
    font-size: 35px;
    line-height: 35px;
    margin-top: 100px;
    text-align: center;
  }
}

#hero h1 b {
  color: #009AFA;
}

#hero p {
  text-align: left;
  font-family: 'Galano_Light', helvetica, sans-serif !important;
  font-size: 30px;
  line-height: 35px;
  margin-top: 30px;
  color: white;
}

@media (max-width: 700px) {
  #hero p {
    text-align: center;
    font-size: 25px;
    font-weight: 100;
    font-family: 'Galano_Light', helvetica, sans-serif !important;
    line-height: 35px;
    margin-top: 30px;
    color: white;
  }
}

@media (max-width: 700px) {
  .lista-iconos {
    display: none;
  }
}

@media (min-width: 701px) {
  .btn-header {
    margin: 55px 0 45px 0;
    text-align: left;
  }

  .btn-header button,
  .btn-header a {
    padding: 7px 23px 12px 23px;
    border: none;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
    font-size: 21px;
    border-radius: 50px;
    background-color: #009AFA;
    color: white;
    text-align: start;
    align-items: start;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    line-height: 1.2;
  }
}

@media (max-width: 700px) {
  .btn-header {
    margin: 40px auto 45px auto;
  }

  .btn-header button,
  .btn-header a {
    padding: 8px 23px 12px 23px;
    border: none;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
    font-size: 21px;
    border-radius: 50px;
    background-color: #009AFA;
    color: white;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
  }
}

.navbar-expand-md .navbar-nav .nav-link {
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  margin-right: 20px;
}

#hero ul {
  overflow: hidden;
  width: 73%;
  max-width: 100%;
  text-align: left;
  margin-top: 55px;
  padding: 0;
  box-sizing: border-box;
}


#hero ul li {
  display: inline-block;
  width: 60px;
  height: auto;
  border-right: 1px solid white;
  margin-right: 10px;
  box-sizing: border-box;
  max-width: 100%;
  padding-right: 80px;
}


#hero ul li img {
  width: 60px;
  height: auto;
}



#hero ul li:last-child {
  border-right: none;
}

/* fondo header */
#hero {
  position: relative;
  overflow: hidden;
}

#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slow-video {
  animation-duration: 20s;
}

.slow-video::-webkit-media-controls {
  display: none !important;
}

/* fin header */


@media (min-width: 701px) {
  #hero {
    padding-top: 190px !important;
  }
}

@media (max-width: 700px) {
  #hero {
    padding-top: 25px !important;
  }
}

#hero>div.container-fluid {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0 0 0;
}

#hero div.hero-right div.hero-box img {
  width: 130%;
  position: relative;
  right: 90px;
}

@media (max-width: 700px) {
  #hero div.hero-right div.hero-box img {
    width: 100%;
    position: relative;
    right: 0;
    max-height: 400px;
    object-fit: contain;
  }

  #hero .hero-left,
  #hero .hero-right {
    min-height: auto;
  }

  #hero .hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}

.justify-content-left {
  justify-content: left !important;
}

.justify-content-start {
  justify-content: flex-start;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  background: transparent !important;
  color: rgb(255, 255, 255);
  transition: all 0.3s ease;
  padding: 15px 0;
}

header.scrolled {
  background: linear-gradient(90deg, #080b0f, #193277) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  padding: 10px 0;
}

header.scrolled .nav-link {
  color: #ffffff !important;
}

header .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

header .navbar-toggler-icon {
  transition: filter 0.3s ease;
}

header .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .navbar-brand img {
    margin: 0 25px 0 25px;
  }
}

@media (min-width: 992px) {
  .navbar-brand img {
    margin: 0 25px 0 0;
  }
}

@media (max-width: 700px) {
  .funcion-seccion {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.seccion-03-item-01,
.seccion-03-item-02,
.seccion-03-item-04,
.seccion-03-item-05 {
  width: 100%;
}


.seccion-03-item-01 img {
  width: 70%;
  height: auto;
  margin-bottom: 20px;
  float: right;
}

.seccion-03-item-01 h2 {
  font-size: 20px;
  text-align: right;
  line-height: 22px;
  float: right;
}

@media (min-width: 701px) {
  .seccion-03-item-01 h2 b {
    font-size: 20px;
    text-align: right;
    line-height: 22px;
    float: right;
  }
}

.texto {
  font-size: 20px;
  text-align: right;
  line-height: 22px;
  float: right;
  margin-top: 15px;
}




.seccion-03-item-02 img {
  width: 70%;
  height: auto;
  margin-bottom: 20px;
  float: right;
  /*margin-top: 65px;*/
}

.seccion-03-item-02 h2 {
  font-size: 20px;
  text-align: right;
  line-height: 22px;
  float: right;
}



.seccion-03-item-03 div {
  width: 100%;
  background: transparent !important;
  max-width: 546px;
}

.seccion-03-item-03 img {
  width: 100%;
  height: auto;
}


.seccion-03-item-04 img {
  width: 70%;
  height: auto;
  margin-bottom: 20px;
  float: left;
}

.seccion-03-item-04 h2 {
  font-size: 20px;
  text-align: left;
  line-height: 22px;
  float: left;
}


.seccion-03-item-05 img {
  width: 70%;
  height: auto;
  margin-bottom: 20px;
  float: left;
}

.seccion-03-item-05 h2 {
  font-size: 20px;
  text-align: left;
  line-height: 22px;
  float: left;
}

#how>div>div {
  overflow: hidden;
}

@media (min-width: 701px) {
  #how>div>div>h2 {
    width: 50%;
    text-align: right;
    border-right: 2px solid #009AFA;
    padding-right: 40px;
    font-family: 'Galano_Regular', Arial, Helvetica, sans-serif;
    padding-bottom: 12px;
    float: left;
    font-size: 46px;
    color: black !important;
  }

  #how>div>div>h2>b,
  #how>div>div>p>b {
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  }

  #how hr {
    display: none;
  }

  #how>div>div>p {
    width: 50%;
    float: left;
    font-family: 'Galano_Medium', Arial, Helvetica, sans-serif;
    text-align: left;
    padding-left: 40px;
    padding-top: 13px;
    font-size: 22px;
    color: black !important;
  }
}

@media (max-width: 700px) {
  .funcion-seccion {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .funcion-seccion h2 {
    width: 100%;
    text-align: center;
    border-right: none;
    padding-right: 0;
    font-family: 'Galano_Regular', Arial, Helvetica, sans-serif;
    float: none;
    font-size: 30px;
    color: black !important;
    display: block;
  }

  .funcion-seccion h2 b,
  .funcion-seccion p b {
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  }

  .funcion-seccion hr {
    width: 55%;
    height: 2px;
    background-color: #009AFA;
    border: none;
    margin: 25px auto;
    display: block;
    opacity: 1;
  }

  .funcion-seccion p {
    width: 100%;
    float: none;
    font-family: 'Galano_Medium', Arial, Helvetica, sans-serif;
    text-align: center;
    padding-left: 0;
    padding-top: 0;
    font-size: 18px;
    margin: 0 0px;
    color: black !important;
    display: block;
    clear: both;
  }
}

.how-right-item div>img {
  width: 100%;
}

#widget {
  background-color: black;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

#widget>div.container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.widget-bg-left,
.widget-bg-right {
  position: absolute;
  top: 0px;
  height: 100%;
  width: auto;
  z-index: 1;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.widget-bg-left {
  left: 0;
}

.widget-bg-right {
  right: 0;
}

@media (max-width: 768px) {

  .widget-bg-left,
  .widget-bg-right {
    display: none;
  }
}


#widget>div.container>div>div.how-left-item.left-1>div {
  border: 1px solid #009AFA;
  border-radius: 15px;
  padding: 35px 30px 35px 30px !important;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}


#widget>div.container>div>div.how-left-item.left-1>div>h3 {
  color: white;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  font-size: 35px;
}

#widget>div.container>div>div.how-left-item.left-1>div>p {
  color: white;
  font-size: 20px;
  line-height: 25px;
  font-family: 'Galano_Medium', Arial, Helvetica, sans-serif;
  margin-bottom: 30px;

}

#widget>div.container>div>div.how-left-item.left-1>div>span {
  display: block;
  width: 70%;
  height: 2px;
  margin-bottom: 20px;
  background-color: #009AFA;

}

#widget>div.container>div>div.how-left-item.left-1>div>ul {
  overflow: hidden;
  padding: 0;

}

#widget>div.container>div>div.how-left-item.left-1>div>ul>li {
  overflow: hidden;
}

#widget>div.container>div>div.how-left-item.left-1>div>ul>li>img {
  width: 50px;
  height: auto;
  float: left;
}

#widget>div.container>div>div.how-left-item.left-1>div>ul>li>p {
  width: 100%;
  display: block;
  line-height: 44px;
  font-size: 22px;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  color: white;
  padding-left: 60px;
}


#widget>div.container>div>div.how-left-item.left-2>div {
  border: 1px solid #009AFA;
  border-radius: 15px;
  padding: 35px 30px 35px 30px !important;
  max-width: 420px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}


#widget>div.container>div>div.how-left-item.left-2>div>h3 {
  color: white;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  font-size: 35px;
  border-bottom: 1px solid #009AFA;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

#widget>div.container>div>div.how-left-item.left-2>div>ul {
  padding: 0 0 0 21px;
}

#widget>div.container>div>div.how-left-item.left-2>div>ul>li {
  margin-bottom: 25px;

}



#widget>div.container>div>div.how-left-item.left-2>div>ul>li::marker {
  color: white;

}

#widget>div.container>div>div.how-left-item.left-2>div>ul>li>p {
  width: 100%;
  display: block;
  line-height: 24px;
  font-size: 20px;
  font-family: 'Galano_Medium', Arial, Helvetica, sans-serif !important;
  color: white;
}

.widget-title {
  position: relative;
  padding: 50px 0 50px 0px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.widget-header-left,
.widget-header-right {
  position: absolute;
  top: 0px;
  height: 100%;
  width: auto;
  z-index: 1;
}

.widget-header-left {
  left: -40px;
}

.widget-header-right {
  right: -40px;
}

@media screen and (max-width: 800px) {
  .widget-header-left {
    display: none;
  }

  .widget-header-right {
    opacity: 0.1;
  }

  .widget-title>h2 {
    color: #009AFA !important;
    font-size: 40px;
    margin: 0;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;

  }

  .widget-title>p {
    color: white !important;
    font-size: 37px;
    line-height: 40px;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  }
}

@media screen and (min-width: 801px) {
  .widget-title>h2 {
    color: #009AFA !important;
    font-size: 60px;
    margin: 0;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;

  }

  .widget-title>p {
    color: white !important;
    font-size: 45px;
    line-height: 40px;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  }
}

.widget-modal>div>div>img {
  margin: 25px auto 0 auto !important;
  width: 70px;
}

.widget-modal>div>p {
  color: black !important;
  font-size: 25px;
  line-height: 28px;
  margin: 0 0 40px 0 !important;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
}

.widget-modal>div>button {
  width: 100%;
  padding: 15px 15px 20px 15px;
  font-size: 20px;
  background-color: #009AFA;
  border-color: #009AFA;
  color: black;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
}


#section-3 {
  position: relative;
}

#section-3>div {
  position: relative;
  z-index: 3;
}


.section-4-bg-01 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  display: block;
}

.section-4-bg-02 {
  position: absolute;
  top: 0px;
  height: 100%;
  width: auto;
  z-index: 2;
  left: -330px;
  display: block;
}

@media screen and (max-width: 800px) {
  .section-4-bg-02 {
    position: absolute;
    top: 0px;
    height: 100%;
    width: auto;
    z-index: 2;
    left: -550px;
    display: block;
  }
}

.section-4-bg-02-bottom {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  display: block;
}

@media screen and (max-width: 800px) {
  .section-4-bg-01 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}


#section-3>div>div>div.section3-left>div>img {
  width: 100%;
  margin-top: -50px;
  padding-top: 19px;
  position: relative;
  z-index: 4;
}

.justify-content-right {
  justify-content: right !important;
}



#section-3>div>div>div.section3-right>div>h1 {
  color: black;
  text-align: right;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 30px;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
}

#section-3>div>div>div.section3-right>div>h1>b {
  color: #009AFA;
}

#section-3>div>div>div.section3-right>div>p {
  color: black;
  font-size: 21px;
  text-align: right;
}

#section-3>div>div>div.section3-right>div>p strong {
  font-weight: bold;
  color: black;
}

@media screen and (max-width: 800px) {
  #section-3>div>div>div.section3-right>div>h1 {
    text-align: center;
    font-size: 35px;
    margin: 30px 0;
    line-height: 39px;
  }

  #section-3>div>div>div.section3-right>div>p {
    text-align: left;
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 20px;
    width: 70%;
    margin-left: auto;
    /* Empuja el párrafo hacia la derecha */
  }

  #section-3>div>div>div.section3-left>div>img {
    background-size: cover;
    width: 100%;
    margin-top: -100px;
    padding-top: 19px;
    position: relative;
    z-index: 4;
    right: 20px;

  }

  #section-4>div.container>div>div>div>img {
    display: none;
  }

  #section-4>div.container>div>h1 {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 31px;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  }
}

@media screen and (min-width: 801px) {
  .medic-mobile {
    display: none;
  }

}

@media screen and (max-width: 800px) {
  .medic {
    display: none;
  }
}

#section-4 {
  position: relative;
  background: white;
  padding-bottom: 0 !important;
  overflow: hidden;
}

#section-4>div.container {
  position: relative;
  z-index: 3;
}


.section-05-img-left,
.section-05-img-right,
.section-05-img-top {
  position: absolute;
  top: 0;
  display: block;
}

.section-05-img-left {
  left: 0;
  z-index: 1;
}

.section-05-img-right {
  right: 0;
  z-index: 1;
}

.section-05-img-top {
  left: 0;
  z-index: 2;
  width: 600px;
}

@media screen and (min-width: 801px) {
  #section-4>div.container>div>h1 {
    text-align: center;
    color: rgb(2, 2, 2);
    font-size: 48px;
    margin-top: 28px;
    margin-bottom: 30px;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  }
}

#section-4>div.container>div>h1>b {
  color: #009AFA;
}

#section-4>div.container>div>div>div>img {
  width: 160%;
  position: relative;
  left: -110px;
}

.lista-hexagonos {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 5;
}

.lista-hexagonos li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

@media screen and (min-width: 801px) {
  .lista-hexagonos .hexagono {
    width: 40px;
    height: 40px;
    background-image: url('https://cabiometrics.nyc3.cdn.digitaloceanspaces.com/Frame%202.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }

  .lista-hexagonos .hexagono::before,
  .lista-hexagonos .hexagono::after {
    display: none;
  }


  ul.lista-hexagonos {
    overflow: hidden;
  }


  ul.lista-hexagonos>li {
    background-color: white;
    border-radius: 10px;
    padding: 10px 50px;
    border: 2px solid white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /* Safari */
    -moz-transition: all 0.3s ease;
    /* Firefox */
    -o-transition: all 0.3s ease;
    /* Opera */
  }

  ul.lista-hexagonos>li:hover {
    background-color: black;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /* Safari */
    -moz-transition: all 0.3s ease;
    /* Firefox */
    -o-transition: all 0.3s ease;
    /* Opera */
  }

  ul.lista-hexagonos>li:hover p {
    color: white;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /* Safari */
    -moz-transition: all 0.3s ease;
    /* Firefox */
    -o-transition: all 0.3s ease;
    /* Opera */
  }

  ul.lista-hexagonos>li p {
    text-align: left;
    font-size: 20px;
    line-height: 25px;
    padding-top: 6px;
    padding-left: 25px;
  }

}

@media screen and (max-width: 800px) {
  .lista-hexagonos .hexagono {
    width: 100px;
    height: 70px;
    background-image: url('/img/Frame%202.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }

  .lista-hexagonos .hexagono::before,
  .lista-hexagonos .hexagono::after {
    display: none;
  }


  ul.lista-hexagonos {
    overflow: hidden;
  }


  ul.lista-hexagonos>li {
    background-color: white;
    border-radius: 10px;
    padding: 10px 25px;
    border: 2px solid white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /* Safari */
    -moz-transition: all 0.3s ease;
    /* Firefox */
    -o-transition: all 0.3s ease;
    /* Opera */
  }

  ul.lista-hexagonos>li:hover {
    background-color: white;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /* Safari */
    -moz-transition: all 0.3s ease;
    /* Firefox */
    -o-transition: all 0.3s ease;
    /* Opera */
  }

  ul.lista-hexagonos>li:hover p {
    color: black;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /* Safari */
    -moz-transition: all 0.3s ease;
    /* Firefox */
    -o-transition: all 0.3s ease;
    /* Opera */
  }

  ul.lista-hexagonos>li p {
    text-align: left;
    font-size: 17pxpx;
    line-height: 23px;
    padding-top: 6px;
    padding-left: 10px;
  }

}

@media screen and (min-width: 801px) {
  #section-5 {
    position: relative;
    overflow: hidden;
    background-color: #080b0f;
  }

  .section-06-img-left,
  .section-06-img-right {
    position: absolute;
    display: block;
  }

  .section-06-img-left {
    left: 0;
    top: 0;
    z-index: 1;
    width: 730px;
  }

  .section-06-img-right {
    right: 0;
    bottom: -50px;
    z-index: 1;
    width: 730px;
  }


  #section-5>div>div>p {
    text-align: center;
    color: black;
    font-size: 48px;
    line-height: 54px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 110px;
    margin-bottom: 110px !important;
    font-family: 'Galano_Medium', Arial, Helvetica, sans-serif !important;


  }

  #section-5>div {
    position: relative;
    z-index: 2;

  }

  #section-5>div>div>p>b {
    color: #009AFA;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;

  }
}

@media screen and (max-width: 800px) {
  #section-5 {
    position: relative;
    overflow: hidden;
    background-color: #080b0f;
  }

  .section-06-img-left,
  .section-06-img-right {
    position: absolute;
  }

  .section-06-img-left {
    left: 0;
    top: 0;
    z-index: 1;
    width: 730px;
  }

  .section-06-img-right {
    right: 0;
    bottom: -50px;
    z-index: 1;
    width: 490px;
  }


  #section-5>div>div>p {
    text-align: center;
    color: black;
    font-size: 32px;
    line-height: 41px;
    margin-bottom: 110px !important;
    font-family: 'Galano_Medium', Arial, Helvetica, sans-serif !important;


  }

  #section-5>div {
    position: relative;
    z-index: 2;

  }

  #section-5>div>div>p>b {
    color: #009AFA;
    font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;

  }
}

footer {
  padding: 25px 0 0 0;
}


footer>div.container {
  padding-bottom: 25px;
}

@media screen and (max-width: 800px) {
  footer>div>div>div>img {
    width: 40%;
  }
}

@media screen and (min-width: 801px) {
  footer>div>div>div>img {
    width: 20%;
  }
}

footer>div>div>nav>a {
  color: #7F7F7F !important;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  margin-left: 20px;
}

footer>div.copy {
  background-color: white;

}

footer>div.copy>strong {
  text-align: center;
  display: block;
  color: black;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif !important;
  margin: 0 auto;
  padding: 10px 0;
}

/* Menú deslizante desde la derecha */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  height: 45vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px;
  overflow: hidden;
}

.slide-menu.active {
  right: 7px;
  top: 7px;
}

.slide-menu-header {
  padding: 40px 30px 30px 30px;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide-menu-header img {
  width: 140px;
  height: auto;
}

.menu-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.slide-menu-content {
  padding: 15px 0 30px 0;
}

.slide-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-menu-item {
  margin: 0;
}

.slide-menu-link {
  display: block;
  padding: 15px 30px;
  color: #333;
  text-decoration: none;
  font-family: 'Galano_Semibold', Arial, Helvetica, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.slide-menu-link.active {
  background-color: #f8f9fa;
  color: #009AFA;
  border-left-color: #009AFA;
  transform: translateX(10px);
}




/* Responsive para diferentes tamaños de pantalla */
@media (max-width: 768px) {
  .slide-menu {
    width: 340px;
    right: -350px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .slide-menu {
    width: 300px;
    right: -320px;
    height: auto;
  }

  .slide-menu-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .slide-menu-header {
    padding: 20px 20px 5px 20px;
  }
}

@media (max-width: 360px) {
  .slide-menu {
    width: 250px;
    right: -250px;
    height: auto;
  }

  .slide-menu-link {
    padding: 10px 15px;
    font-size: 13px;
  }
}

.division-menu {
  margin: 7px 12px;
}


.custom-how-item {
  display: table;
  width: 100%;
  margin-bottom: 10px;
  height: 100px;
  table-layout: fixed;
  border-spacing: 0;
}

.custom-how-item img {
  width: 50%;
  /*height: 100%;*/
  object-fit: contain;
  object-position: center;
  display: table-cell;
  vertical-align: middle;
}

.custom-how-item h2 {
  width: 50%;
  margin: 0;
  padding: 10px 5px;
  line-height: 1.3;
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
  display: table-cell;
  height: 100%;
}

.custom-how-item h2.text-right {
  text-align: rleft;
}

.custom-col-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

/* Media query para desktop */
@media (min-width: 768px) {
  .custom-col-left {
    width: 25%;
  }

  .custom-col-middle {
    width: 50%;
  }

  .custom-col-right {
    width: 25%;
  }

  .custom-col-container {
    width: 50%;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .slide-menu,
  .menu-overlay {
    display: none;
  }

  /* Mostrar el navbar principal en desktop */
  #mainNavbar {
    display: flex !important;
    justify-content: flex-start;
  }

  .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
  }

}