@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
@import url(https://fonts.googleapis.com/css?family=Fjalla+One:100,300,400);
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0;
}
 
.preloader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding-top: 30vh;
}

.footer {
    background-color: #000;
    padding: 4rem 0 2rem;
}

.footer-brand {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-title {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255,255,255,0.6);
    display: block;
    padding: 2px 0;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}



/* NAV MENU */
/* Configuración básica de la barra */
.navbar {
  position: sticky;
  top: 0;
  background-color: #000000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 10px 0;
  color: #0099ff;
}

.logo img {
  height: 23px; /* Ajusta según tu logo */
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-top: revert;
  text-transform: uppercase;
}

/* --- Estilos para Móvil --- */
.menu-toggle {
  display: none; /* Oculto en escritorio */
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 2px 0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* Aparece en móvil */
  }

  .nav-menu {
    display: none; /* Ocultamos el menú por defecto */
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;

    color: #00a8ff;

    /* Color de fondo con transparencia (RGBA) */
    background-color: rgba(0, 0, 0, 0.3); 
    
    /* Efecto de desenfoque (El toque profesional) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Soporte para Safari */

  }

  .nav-menu.active {
    display: block; /* Se muestra al hacer click */
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
  }
}

@media (max-width: 480px) {
    
    body {
        font-size: 0.9375rem;
        line-height: 1.55;
    }
}



/* Features Row */

.features-flat {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px 20px;
  gap: 20px;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05); /* Fondo muy sutil */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 300px;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.feature-card img {
  width: 80px; /* Tamaño ideal para Flat Icons */
  height: auto;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
}


.fjalla-one-regular {
    font-family: "Fjalla One", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.blue-text {color: #0a53be; }


.text-justify-conocenos{
    text-align: justify !important;
    padding: 2vh 3vh 2vh 3vh;
}

.contactanos {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 20, 125, 1) 100%);
}

.custom-hr {
    height: 2px; /* Ajusta la altura de la línea según sea necesario */
    background-color: #cecece; /* Define el color de fondo de la línea */
    border: none; /* Elimina cualquier borde que pueda tener el hr por defecto */
}

/* Typography */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
    font-weight: bold;
}

header {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 20, 125, 1) 100%);
}

header .table {
    display: table;
    height: 100%;
}

header .container {
    height: 100%;
}


header .header-text {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white;
    background-image: url('../img/world-map.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}
 

header .typed {
    display: inline-block;
    margin: 0;
    font-family: "Fjalla One", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 4.4vh;
    text-shadow: 2px 2px 2px #0C0E10;
    text-transform: uppercase;
    margin-top: 20%;
}
 
a {
    text-decoration: none;
    color: #001eff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-menu a {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.intro-table-dark {
    background-color: #000115;
    width: 100%;
    height: 20em;
    top: -6em;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease, transform 0.3s ease;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.intro-table-dark:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.apk-icon {
    background-image: url("../img/apk-file-format.png");
}

.gps-icon {
    background-image: url("../img/gps-phone.png");
}

.fondo-blanco {
    background-color: #ffffff;
}
 
.plataforma {
    background: #00a8ff url('../img/fall-back.jpg') no-repeat center center;
    background-size: cover;
    -webkit-transition: background-image 0.6s linear 0.3s;
    transition: background-image 0.6s linear 0.3s;
}

.fondo-gris-claro{
    background-color: #f4f4f4;
}
 
.bloque {
  white-space: nowrap;
  font-weight: bold;
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75%      { opacity: 0.15; }
}

.open-blink {
    content: ' ';
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 16px 0 0;
    border-radius: 50%;
    background-color: #41cdfc;
    animation: flash 2s infinite;
}

.open-blink:before {
    content: ' ';
    position: absolute;
    top: -8px;
    left: -8px;
    display: inline-block;
    width: 32px;
    height: 32px;
    opacity: 0.1;
    border-radius: 50%;
    background-color: #41cdfc;
}


.sc-btn a, .sc-btn span {
    color: #fff;
    background-color: #0d6efd;
    cursor: pointer;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #0d6efd;
    padding: 8px 12px;
}




/* Form Control */
.form-control.form-white {
    border: 2px solid #0d6efd;
    background: #082336;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.form-control.form-white::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #0d6efd;
}

.form-control.form-white:-moz-placeholder {
    opacity: 1;
    /* Mozilla Firefox 4 to 18 */
    color: #0d6efd;
}

.form-control.form-white::-moz-placeholder {
    opacity: 1;
    /* Mozilla Firefox 19+ */
    color: #0d6efd;
}

.form-control.form-white:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #0d6efd;
    background: #082336;
}

.form-control.form-white:focus {
    /* background: rgba(255,255,255,0.2); */
    color: #fff;
    background: #082336;
}

/* Popup */
.modal {
    padding: 0 25px !important;
}

.modal-dialog {
    width: 100%;
    margin: 0 auto;
}

.modal-popup {
    position: relative;
    padding: 30px;
    text-align: center;
    box-shadow: none;
    border-radius: 4px;
    color: #fff;
    background-color: #010010;
    border: 0px solid #0d6efd !important;
}

.modal-popup a.close-link {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
}

.popup-form {
    width: 100%;
    margin: auto;
}

.popup-form .form-control {
    margin: 16px 0;
}

.popup-form .form-control.dropdown {
    text-align: left;
}

.popup-form .form-control.dropdown:after {
    content: '\f0d7';
    font-family: 'FontAwesome';
    display: inline-block;
    float: right;
    color: white;
}

.popup-form .dropdown .dropdown-menu {
    top: 65px;
    width: 100%;
    padding: 0;
    border: 2px solid white;
    border-top: 0;
    border-radius: 0;
    background: white;
    box-shadow: none;
}

.popup-form .dropdown .dropdown-menu li {
    width: 100%;
    background: transparent;
}

.popup-form .dropdown .dropdown-menu li a {
    width: 100%;
    padding: 15px 30px;
    color: #0d6efd;
}

.popup-form .dropdown .dropdown-menu li:hover a {
    color: #fff;
    background: #0d6efd;
}

/* Checkbox */


.btn.btn-submit {
    width: 100%;
    margin-top: 0px;
    color: #fff;
    border: 0px solid #fff;
    background: #0d6efd;
    text-transform: uppercase;
    font-weight: bold;
}

.btn.btn-submit:focus {
    font-weight: bold;
}

.btn.btn-submit:hover {
    color: #fff;
    background: #41cdfc;
}

.row.title {
    padding: 0 20px;
    margin-bottom: 20px;
}


.light {
    color: rgba(255, 255, 255, 0.6) !important;
}


.white {
    color: white;
}

.light-white {
    color: rgba(255, 255, 255, 0.5);
}

.white-bg {
    background: white;
}

.gray-bg {
    background: #f7f7f7;
}

.blue {
    color: #00a8ff;
}

.blue-bg {
    background: #0C0E10;
}
 
.section {
    padding: 5.5em 0;
}

.dark-text-background{
    background-color: rgb(12, 14, 16, 0.8) !important;
    color: #FFFFFF !important;
    padding: 2vh;
}

.table-devices {
    color: #fff !important;
}

.table-devices tbody td {
    border-top: 0px solid #ddd !important;
}

.table-devices > tbody > tr:nth-of-type(odd) {
    background-color: #0C0E10;
}

.table-devices > thead > tr > th, .table-devices > tbody > tr > td {
    text-align: center;
    color: #fff !important;
}

.table-devices > thead > tr > th:nth-child(4),
.table-devices > tbody > tr > td:nth-child(4) {
    display: none;
}

.table-devices .green {
    color: #00D900;
}


#floatBarsG, #floatBarsG2 {
    position: relative;
    width: 168px;
    height: 20px;
    margin: auto;
}

.floatBarsG {
    position: absolute;
    top: 0;
    background-color: rgb(0, 170, 255);
    width: 20px;
    height: 20px;
    animation-name: bounce_floatBarsG;
    animation-duration: 0.845s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    transform: scale(.3);
    -webkit-transform: scale(.3);
}

#floatBarsG_1 {
    left: 0;
    animation-delay: 0.336s;
}

#floatBarsG_2 {
    left: 21px;
    animation-delay: 0.4225s;
}

#floatBarsG_3 {
    left: 42px;
    animation-delay: 0.509s;
}

#floatBarsG_4 {
    left: 63px;
    animation-delay: 0.5955s;
}

#floatBarsG_5 {
    left: 84px;
    animation-delay: 0.672s;
}

#floatBarsG_6 {
    left: 105px;
    animation-delay: 0.7585s;
}

#floatBarsG_7 {
    left: 126px;
    animation-delay: 0.845s;
}

#floatBarsG_8 {
    left: 147px;
    animation-delay: 0.9315s;
}


@keyframes bounce_floatBarsG {
    0% {
        transform: scale(1);
        background-color: rgb(0, 170, 255);
    }

    100% {
        transform: scale(.3);
        background-color: rgba(0, 170, 255, 0.9);
    }
}

#intro {
    min-height: 80vh;
}

.map {
    width: 100%;
    height: 30em;
}

.gps-table-devices {
    height: 24em;
    background-color: #1A1F23;
}

.slogan { font-size: 1.35rem; }

@media (max-width: 576px) {

    #intro{
        min-height: 64vh;
    }

    .map {
        width: 100%;
        height: 20em;
        margin-top: 1em;
    }

    .gps-table-devices {
        height: 16em;
        background-color: #1A1F23;
        font-size: 80% !important;
    }

    .intro-table-dark {
        height: 14em;
    }

    .slogan { font-size: 1.1rem; }

    header .typed { font-size: 4.0vh; line-height: normal; }

    header .header-text { background-position: center 12%; }

    .features-flat {
        margin-top: 5rem;
        padding: 20px 10px;
    }

    .feature-card {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        padding: 3%;
    }

    .feature-card p {
        display: none;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .feature-card img {
        width: 60%;
        max-width: 60px;
        margin-bottom: 10px;
    }
}


/* =====================
   Sección Apps
   ===================== */
.apps-section {
    background-color: #ffffff;
}

.app-label {
    color: #0d6efd;
}   

.app-phone-img {
    width: 60%;
    max-width: 280px;
    filter: drop-shadow(0 16px 32px rgba(13, 110, 253, 0.2));
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features li {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 1rem;
}

.app-features li i {
    color: #0099ff;
    width: 22px;
    margin-right: 10px;
}

.btn-download-apk {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #0d6efd;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-download-apk-icon {
    width: 38px;
    height: auto;
}

.btn-download-apk span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-weight: bold;
    font-size: 1.05rem;
}

.btn-download-apk small {
    font-weight: normal;
    font-size: 0.72rem;
    opacity: 0.85;
}

.btn-download-apk:hover {
    background-color: #0a58ca;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .app-phone-img {
        width: 45%;
        max-width: 160px;
        margin-bottom: 1rem;
    }
}


/* =====================
   Botón flotante WhatsApp
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

