@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

.inter-regular {
 font-family: "Inter", sans-serif;
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
 font-variation-settings: "slnt" 0;
}
.inter-medium {
 font-family: "Inter", sans-serif;
 font-optical-sizing: auto;
 font-weight: 500;
 font-style: normal;
 font-variation-settings: "slnt" 0;
}
.inter-semi {
 font-family: "Inter", sans-serif;
 font-optical-sizing: auto;
 font-weight: 600;
 font-style: normal;
 font-variation-settings: "slnt" 0;
}
.inter-bold {
 font-family: "Inter", sans-serif;
 font-optical-sizing: auto;
 font-weight: 700;
 font-style: normal;
 font-variation-settings: "slnt" 0;
}

/* ROOT VARS */
:root {
 --font-default: "Gotham";
 --font-primary: "Lemon/Milk";

 --color-default-light: #e3e3e3;
 --color-default: #494949;
 --color-default-dark: #000024;

 /* --color-primary-light: #ff94eb;
 --color-primary: #fc62d8;
 --color-primary-dark: #fc2dd5;

 --color-secondary-light: #9e83ff;
 --color-secondary: #855afd;
 --color-secondary-dark: #683eff; */

 --color-white: #ffffff;
 --color-light: #f3f5fa;
 --color-dark: #000024;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: "Inter";
 color: var(--color-default);
 font-weight: 600;
}

a {
 color: var(--color-primary);
 text-decoration: none;
}

a:hover {
 color: var(--color-primary-light);
 text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Inter";
 color: white;
}

p {
 font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9999;
 overflow: hidden;
 background: #162737;
}
#preloader img {
 width: 100px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
 position: fixed;
 visibility: hidden;
 opacity: 0;
 right: 15px;
 bottom: 15px;
 z-index: 996;
 background: #25d366;
 width: 60px;
 height: 60px;
 border-radius: 50px;
 transition: all 0.4s;
}

.back-to-top i {
 font-size: 24px;
 color: #fff;
 line-height: 0;
}

.back-to-top:hover {
 background: #075e54;
 color: #fff;
}

.back-to-top.active {
 visibility: visible;
 opacity: 1;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
 --background-color: #ffffff;
 color: var(--default-color);
 background-color: var(--background-color);
 padding: 15px 0;
 transition: all 0.5s;
 z-index: 997;
}

.header .logo img {
 height: 50px;
 max-height: 50px;
 margin-right: 6px;
}

.header .logo h1 {
 font-size: 24px;
 margin: 0;
 font-weight: 600;
 color: var(--secondary-color);
}

.header .logo span {
 color: var(--primary-color);
 font-size: 24px;
 font-weight: 600;
 padding-left: 3px;
}

@media (max-width: 1200px) {
 .header .logo {
  order: 1;
 }

 .header .btn-getstarted {
  order: 2;
  margin: 0 15px 0 0;
  padding: 6px 20px;
 }

 .header .navmenu {
  order: 3;
 }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
 --background-color: #ffffff;
 --secondary-color: #444444;
 --nav-color: #444444;
 box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
 --background-color: #162737;
 --secondary-color: #162737;
 --nav-color: rgba(255, 255, 255, 1);
}
.index-page .header-white {
 --background-color: #ffffff;
 --secondary-color: #ffffff;
 --nav-color: #000000;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
 --background-color: #ffffff;
 --secondary-color: #ffffff;
 --nav-color: #000000;
}

.index-page.scrolled .header .navmenu .form-busqueda .busqueda {
 background-color: transparent;
 border: 1px solid #444444;
 border-left: none !important;
 color: #444444;
 border-top-right-radius: 20px;
 border-bottom-right-radius: 20px;
}

.index-page.scrolled .header .navmenu .form-busqueda .busqueda:focus {
 outline: none !important;
 box-shadow: none;
 background-color: transparent;
 border: 1px solid #444444;
 color: #444444;
}

.index-page.scrolled .header .navmenu .form-busqueda .busqueda::placeholder {
 color: #444444;
}

.index-page.scrolled .header .navmenu .form-busqueda #searchButton {
 background-color: transparent;
 color: #444444;
 border-right: none !important;
 border-top: 1px solid #444444 !important;
 border-bottom: 1px solid #444444 !important;
 border-left: 1px solid #444444 !important;
 border-top-left-radius: 20px;
 border-bottom-left-radius: 20px;
}

.btn-header{
  color: #ffffff !important;
  background-color: #0045b9;
}

.btn-header:hover {
 color: white !important;
}

.btn-header-white{
  color: #0045b9 !important;
  background-color: #ffffff;
}

.btn-header-white:hover {
  color: #0045b9 !important;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .btn-header-white{
    width: 100%;
  }
  .btn-header{
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Form Busqueda
--------------------------------------------------------------*/
.busqueda {
 background-color: transparent;
 border: 1px solid #fff;
 border-left: none !important;
 color: #fff;
 border-top-right-radius: 20px;
 border-bottom-right-radius: 20px;
}
.busqueda-white {
 background-color: transparent;
 border: 1px solid #000;
 border-left: none !important;
 color: #000;
 border-top-right-radius: 20px;
 border-bottom-right-radius: 20px;
}
.busqueda-white::placeholder {
 color: #000 !important;
}
.busqueda:focus {
 outline: none !important;
 box-shadow: none;
 background-color: transparent;
 border: 1px solid #fff;
 color: #fff;
}
.busqueda-white:focus {
 outline: none !important;
 box-shadow: none;
 background-color: transparent;
 border: 1px solid #000;
 color: #000;
}
.busqueda::placeholder {
 color: #fff;
}
.busqueda:-webkit-autofill {
 -webkit-box-shadow: 0 0 0 1000px transparent inset;
 box-shadow: 0 0 0 1000px transparent inset;
 background-color: transparent !important;
 -webkit-text-fill-color: inherit;
}
#searchButton {
 background-color: transparent;
 color: #fff;
 border-right: none;
 border-top: 1px solid #fff;
 border-bottom: 1px solid #fff;
 border-left: 1px solid #fff;
 border-top-left-radius: 20px;
 border-bottom-left-radius: 20px;
}
.searchButton-white {
 background-color: transparent;
 color: #000 !important;
 border-right: none !important;
 border-top: 1px solid #000 !important;
 border-bottom: 1px solid #000 !important;
 border-left: 1px solid #000 !important;
 border-top-left-radius: 20px;
 border-bottom-left-radius: 20px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1000px) {
 .navmenu {
  padding: 0;
 }

 .navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
 }

 .navmenu li {
  position: relative;
 }

 .navmenu a,
 .navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 15px;
  font-family: "Inter";
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
 }

 .navmenu a i,
 .navmenu a:focus i {
  font-size: 11px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
 }

 .navmenu li:last-child a {
  padding-right: 0;
 }

 .navmenu li:hover > a,
 .navmenu .active,
 .navmenu .active:focus {
  color: var(--nav-hover-color);
 }

 .navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--white-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
 }

 .navmenu .dropdown ul li {
  min-width: 200px;
 }

 .navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--default-color);
 }

 .navmenu .dropdown ul a i {
  font-size: 12px;
 }

 .navmenu .dropdown ul a:hover,
 .navmenu .dropdown ul .active:hover,
 .navmenu .dropdown ul li:hover > a {
  color: var(--tertiary-color);
 }

 .navmenu .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
 }

 .navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
 }

 .navmenu .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
 }

 .navmenu .megamenu {
  position: static;
 }

 .navmenu .megamenu ul {
  margin: 0;
  padding: 10px;
  background: var(--nav-dropdown-background-color);
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
 }

 .navmenu .megamenu ul li {
  flex: 1;
 }

 .navmenu .megamenu ul li a,
 .navmenu .megamenu ul li:hover > a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--nav-dropdown-color);
 }

 .navmenu .megamenu ul li a:hover,
 .navmenu .megamenu ul li .active,
 .navmenu .megamenu ul li .active:hover {
  color: var(--nav-dropdown-hover-color);
 }

 .navmenu .megamenu:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
 }

 .navmenu .dd-box-shadow {
  box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
 }
}

/* Mobile Navigation */
@media (max-width: 999px) {
 .mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
 }

 .navmenu {
  padding: 0;
  z-index: 9997;
 }

 .navmenu ul {
  display: none;
  position: absolute;
  inset: 60px 20px 20px 20px;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9998;
  box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
 }

 .navmenu a,
 .navmenu a:focus {
  color: #fff;
  padding: 10px 20px;
  font-family: "Inter";
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
 }

 .navmenu a i,
 .navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: rgba(var(--primary-color-rgb), 0.1);
 }

 .navmenu a i:hover,
 .navmenu a:focus i:hover {
  background-color: var(--primary-color);
  color: var(--contrast-color);
 }

 .navmenu a:hover,
 .navmenu .active,
 .navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
 }

 .navmenu .active i,
 .navmenu .active:focus i {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
 }

 .navmenu .dropdown ul,
 .navmenu .megamenu ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  background-color: var(--nav-dropdown-background-color);
  transition: all 0.5s ease-in-out;
 }

 .navmenu .dropdown ul ul,
 .navmenu .megamenu ul ul {
  background-color: rgba(33, 37, 41, 0.1);
 }

 .navmenu .dropdown > .dropdown-active,
 .navmenu .megamenu > .dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
 }

 .mobile-nav-active {
  overflow: hidden;
 }

 .mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  position: absolute;
  font-size: 32px;
  top: 15px;
  right: 15px;
  margin-right: 0;
  z-index: 9999;
 }

 .mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: #162737;
  transition: 0.3s;
 }

 .mobile-nav-active .navmenu > ul {
  display: block;
 }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
 padding: 40px 0;
 overflow: hidden;
}
.bg-cover {
 background-position: center;
 background-size: cover;
 width: 100%;
}

.bg-cover-cuadrado {
 background-position: center;
 background-size: cover;
 width: 100%;
 content: "";
 padding-bottom: 100%;
 border-radius: 0 3rem 3rem 3rem;
 height: 100px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
 padding-top: 120px;
 padding-bottom: 50px;
}

#hero h1 {
 font-family: "Inter";
 font-weight: 600;
 font-size: 40px;
}

#hero p {
 font-family: "Inter";
 font-weight: normal;
 font-size: 20px;
}

@media (max-width: 768px) {
 .hero h1 {
  font-size: 35px !important;
 }
 .hero hr {
  width: 100% !important;
 }
 .hero p {
  width: 100% !important;
 }
 #hero .img-cel-hero {
  width: 100%;
 }
}

/*--------------------------------------------------------------
# Beneficios Section
--------------------------------------------------------------*/
.beneficios{
  background-color: #0045b9;
  border-radius: 40px;
  text-align: center;
  height: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficios p {
 font-family: "Inter";
 font-size: 20px;
}

@media (max-width: 768px) {
 .beneficios h1 {
  font-size: 35px !important;
 }
 .beneficios hr {
  width: 100% !important;
 }
 .beneficios p {
  width: 100% !important;
 }
 .img-beneficio-hero{
  width: 40%;
 }
}

/*--------------------------------------------------------------
# Eleginos Section
--------------------------------------------------------------*/
#eleginos {
 padding-top: 150px;
 padding-bottom: 150px;
}

#eleginos h2 {
 font-family: "Inter";
 font-weight: 600;
 font-size: 40px;
}

#eleginos h3 {
 font-family: "Inter";
 font-weight: 600;
 font-size: 25px;
}

.eleginos .eleginos-item {
 padding: 0 0 20px 20px;
 margin-top: -2px;
 border-left: 2px dashed white;
 position: relative;
}

.eleginos p {
 font-family: "Inter";
 font-size: 16px;
 font-weight: normal;
}

.eleginos .eleginos-item:last-child {
 padding-bottom: 0;
}

.eleginos .eleginos-item::before {
 content: "";
 position: absolute;
 width: 16px;
 height: 16px;
 border-radius: 50px;
 left: -9px;
 top: 0;
 background: white;
 border: 2px solid white;
}

.cta-eleginos {
 background-color: #1c3c53;
 padding-top: 100px;
 padding-bottom: 100px;
 padding-left: 100px;
 padding-right: 100px;
}

@media (max-width: 768px) {
 .cta-eleginos {
  background-color: #1c3c53;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
 }
}

/*--------------------------------------------------------------
# Why-us Section
--------------------------------------------------------------*/
.why-us h1{
  margin-top: 150px;
}

.medio-circulo{
  padding-bottom: 4%;
}

@media (min-width: 769px) and (max-width: 992px) {
  .medio-circulo{
    padding-bottom: 4%;
  }
}

@media (min-width: 993px) and (max-width: 1550px) {
  .medio-circulo{
    padding-bottom: 4%;
  }
}

@media (min-width: 1551px) and (max-width: 2000px) {
  .medio-circulo{
    padding-bottom: 10%;
  }
}

.card-why-us {
  min-height: 320px;
  max-height: 320px;
  position: relative;
  background-color: #f6f6f6;
  z-index: 4;
  overflow: hidden; /* Añadido para asegurar que el pseudo-elemento no se desborde */
}

.rectangulo-oscuro {
  position: relative;
  top: -8%;
  height: 80px;
  background-color: #162838;
  border-bottom-left-radius: var(--bs-border-radius-2xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-2xl) !important;
}

.container-cards-why-us{
  top: 150px;
}

@media (max-width: 768px) {
  .container-cards-why-us{
    top: 0px;
  }
  .why-us h1{
    margin-top: 100px;
  }
 }

/* .card-why-us::before {
  position: absolute;
  content: '';
  top: 10%; 
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #162838;
  z-index: -1;
  border-radius: var(--bs-border-radius-2xl) !important;
} */













/*--------------------------------------------------------------
# Servicios Section
--------------------------------------------------------------*/
#servicios {
 padding-bottom: 150px;
}

#servicios h2 {
 font-family: "Inter";
 font-weight: 600;
 font-size: 40px;
}

.card-servicios {
 border: 1px solid #1c3c53;
 padding: 40px;
}

.card-servicios p {
 font-family: "Inter";
 font-size: 15px;
 font-weight: normal;
}

@media (max-width: 768px) {
 .card-servicios img {
  width: 100%;
 }
}

/*--------------------------------------------------------------
# Contacto Section
--------------------------------------------------------------*/
#contacto {
 padding-top: 150px;
 padding-bottom: 150px;
}

#contacto h2 {
 font-family: "Inter";
 font-weight: 600;
 font-size: 40px;
}

.contacto p {
 font-family: "Inter";
 font-size: 18px;
 font-weight: normal;
}

.card-contacto {
 border: 1px solid #0045b9;
}

@media (max-width: 768px) {
 .contacto{
  padding-top: 0px !important;
 }
  .queres-trabajar {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-radius: 0px;
  bottom: 1px;
 }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 font-size: 12px;
 background-color: #ffffff;
}

#footer .footer-top {
 padding: 60px 0 0px 0;
 background: #1c3c53;
}

#footer .footer-bottom {
 padding-top: 30px;
 padding-bottom: 30px;
}

#footer .transparente {
 -webkit-text-stroke: 2px #171952 !important; /* Color del contorno */
 color: transparent; /* Hacer el interior transparente */
}

/* Ajustar el tamaño del icono si es necesario */
#footer .bx {
 font-size: 27px; /* Tamaño del icono */
}
#footer .bi {
 font-size: 25px; /* Tamaño del icono */
}

#footer-dark {
  background: rgb(0,69,185);
background: linear-gradient(90deg, rgba(0,69,185,1) 0%, rgba(22,40,56,1) 100%);
 font-size: 12px;
}

#footer-dark .footer-top {
 padding: 60px 0 0px 0;
 background: var(--color-dark);
}

#footer-dark .footer-bottom {
 padding-top: 30px;
 padding-bottom: 30px;
}

#footer-dark .transparente {
 -webkit-text-stroke: 2px #ffffff !important; /* Color del contorno */
 color: transparent; /* Hacer el interior transparente */
}

/* Ajustar el tamaño del icono si es necesario */
#footer-dark .bx {
 font-size: 27px; /* Tamaño del icono */
}
#footer-dark .bi {
 font-size: 25px; /* Tamaño del icono */
}

@media (max-width: 768px) {
  .logo-footer{
    width: 60%;
  }
}

/*--------------------------------------------------------------
# SOCIAL MEDIA MENU
--------------------------------------------------------------*/
.social-media-menu {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 0;
}
.social-media-menu li {
 width: 30px;
 height: 30px;
 border-radius: 30px;
 background-color: var(--color-light);
 display: flex;
 justify-content: center;
 align-items: center;
}
.social-media-menu li a {
 color: var(--color-default);
 opacity: 0.5;
 transition: 0.3s;
}
.social-media-menu li a:hover {
 color: var(--color-primary-dark);
 opacity: 1;
 transition: 0.3s;
}

/*--------------------------------------------------------------
# NOSOTROS
--------------------------------------------------------------*/
.logo-nosotros {
 width: 170px;
}

#nosotros-page img {
 width: 20%;
 position: absolute;
 top: 15px;
 right: 30px;
 z-index: 1;
}

#nosotros-page .card {
 height: 300px;
 max-height: 300px;
}

#nosotros-page .card h6 {
 color: #171952;
}

#nosotros-page .card p {
 text-align: justify !important;
}

@media (max-width: 768px) {
}
