@font-face {
  font-family: 'Yorkten Bold';
  src: url('./fonts/Yorkten-NorBol.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Yorkten Book';
  src: url('./fonts/Yorkten-NorBoo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geometos Neue Extrabold';
  src: url('./fonts/Geometos_neue_extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Geometos Neue';
  src: url('./fonts/Geometos_neue.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geometos Neue Bold';
  src: url('./fonts/Geometos_neue_bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    color: #000;
    background-color: #fff;
      margin-top: 110px;
  }
  @media (max-width: 768px) {
  body {
    margin-top: 60px; /* o menos si el header es más pequeño en móviles */
  }
}
  
  a {
    text-decoration: none;
    color: #0B447B  ;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

  }
  
/* Navbar */
.navbar {
    padding: 00px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Asegura que quede por encima del resto */
    background-color: white; /* O el color que uses de fondo */

  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .navbar-left {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 120px;
    height: auto;
    margin-right: 0px;

  }
  
  .nav-links {
    display: flex;
    gap: 80px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Geometos Neue Bold", sans-serif;
    font-weight: bold;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #0B447B;
  }
  
  .phone {
    font-weight: 600;
    margin-left: 60;
    text-decoration: none;
    font-weight: bold;
    color: #0B447B;  
    font-family: "Yorkten Book", sans-serif;
  }

  
  .phone-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .phone-icon {
    width: 40px;
    height: auto;
  }
  
  
  /* Hero */
  .hero {
    padding: 3px 0;
    position: relative;
    overflow: hidden;
  }
  
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

  
.hero-text {
  flex: 0 0 60%;
  max-width: 60%;


}
  
  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    word-break: break-word;
    font-family: "Geometos Neue Extrabold", sans-serif;
  }
  @media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.5rem;
    word-break: keep-all;
    text-align: center;
    letter-spacing: -1px;
  }
}

  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 20px;
        font-family: "Geometos Neue", sans-serif;
  }
  
  .btn {
    background-color: #0B447B;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
        font-family: "Geometos Neue Bold", sans-serif;
  }
  
  .btn:hover {
    background-color: #021f3b;
    transform: scale(1.05);
  }
  
  
  /* Shapes */
  .hero-shapes {
    position: relative;
    width: 250px;
    height: 250px;
  }
  
  .large-circle {
    width: 100%;
    height: 100%;
    background-color: #cce7ff;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .small-circle {
    width: 80px;
    height: 80px;
    background-color: #003366;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .nav-links {
      justify-content: center;
      margin-top: 10px;
    }
  
    .hero-shapes {
      margin-top: 40px;
    }
  }
  .mobile-bottom-nav {
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;

        font-family: "Geometos Neue", sans-serif;
  }
  
  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #0B447B;
    transition: color 0.3s ease;
  }
  
  .mobile-bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    color: #0B447B;
  }
  
  .mobile-bottom-nav .nav-item:hover,
  .mobile-bottom-nav .nav-item.active {
    color: #0B447B;
  }
  
  /* Mostrar solo en pantallas pequeñas */
  @media (max-width: 768px) {
    .mobile-bottom-nav {
      display: flex;
    }
  
    .navbar {
      display: none;
    }
  }
/* Hover para enlaces del navbar superior */
.nav-links a:hover,
.phone span:hover {
  color: #517797;
  transition: color 0.3s ease;
  cursor: pointer;
}

  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
.hero-image {
  flex: 0 0 40%;
  max-width: 40%;
}

.hero-image img {
  max-width: 90%;
  height: auto;
  border-radius: 20px; 
  object-fit: contain;
}


  .btn {
    font-size: 1rem;
    padding: 12px 32px;
  }
  
  .quienes-somos {
    width: 100%;
    background-color: #f3f7fb;
    padding: 80px 20px;
    font-size: 2    0px;
  }
  
  .quienes-somos .container {
    max-width: 1200px;
    margin: 0 auto;
  }

.quienes-somos {
  background-image: url("ICONOS/separador.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.quienes-somos__inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
}

.quienes-somos__content {
  width: 50%;

  padding: 30px;
  border-radius: 12px;
  color: #0a2540;
}

.quienes-somos__content h2 {
   font-family: "Geometos Neue Bold", sans-serif;
      padding: 10px;
}

.quienes-somos__content p {
   font-family: "Yorkten Book", sans-serif;
   padding: 10px;
}
  
  .servicios {
  padding: 80px 20px;
  background-color: #fff;
}
.titulo .h2{
    font-family: "Geometos Neue Bold", sans-serif;
}
.servicios h2 {
  font-size: 50px;
  font-weight: bold;
  color: #000;
  text-align: left;
  margin-bottom: 10px;
  font-family: "Geometos Neue Bold", sans-serif;
}

.servicios .subtitulo {
  text-align: left;
  color: #333;
  font-size: 23px;
  margin-bottom: 50px;
     font-family: "Yorkten Book", sans-serif;
}
.container .h2 {
    font-family: "Geometos Neue Bold", sans-serif;
}

.tarjetas-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tarjeta {
  border-radius: 20px;
  padding: 30px;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tarjeta h3 {
  font-size: 18px;
    font-family: "Geometos Neue Bold", sans-serif;
}

.tarjeta p {
  font-size: 15px;
  line-height: 1.5;
   font-family: "Yorkten Book", sans-serif;
}

/* Colores */
.azul-claro {
  background-color: #d2e9ff;
}

.azul-oscuro {
  background-color: #0B447B;
  color: white;
}

.azul-oscuro h3,
.azul-oscuro p {
  color: white;
}

/* Círculo decorativo */
.icono {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0B447B;
}

.icono.claro {
  background-color: #d2e9ff;
}

.tarjetas-servicios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .tarjetas-servicios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tarjetas-servicios {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .quienes-somos__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  .quienes-somos__content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .quienes-somos {
    background-image: none; 
    background-color: #cfe8ff; 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 480px;
    padding: 60px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  .quienes-somos__content {
    background-color: transparent;
    color: #0B447B;
        background-color: transparent;

  }
  .quienes-somos__content h2 {
    font-size: 30px;
  }

  .quienes-somos__content p {
    font-size: 17px;
    line-height: 1.5;
}
}

.tarjeta-azul-oscuro,
.tarjeta-azul-claro {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.tarjeta-azul-oscuro.visible,
.tarjeta-azul-claro.visible {
  opacity: 1;
  transform: translateY(0);
}
.tarjeta {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tarjeta:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.navbarr {
    padding: 00px 0;
    font-family: "Geometos Neue Bold", sans-serif;
  }
  
  .navbarr .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

    .containerr {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

.footer {
  background-color: #0B447B;
  color: white;
  padding: 3rem 1rem 2rem; /* más espacio arriba */
  text-align: center;
      font-family: "Geometos Neue Bold", sans-serif;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .logo {
  height: 130px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer .phone {
  font-weight: bold;
  font-size: 1.1rem;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
}

.phone-icon {
  color: white;
  font-size: 1.2rem;
  transform: scaleX(-1);
}



@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin: 1rem 0;
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .btn {
    margin-bottom: 40px;
  }
}


html {
  scroll-behavior: smooth;
}

.whatsapp-float {
  position: fixed;
  bottom: 80px; 
  right: 20px;
  z-index: 999;
  background-color: #0B447B;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-align: center;
  display: none;
  width: 60px;
  height: 60px;
}

.whatsapp-float i {
  pointer-events: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: block;
  }
}
