a {
    text-decoration: none;
    color: #fff;
}



.info {
    padding: 0 80px 0 80px;
    background-color: #0B4F6C;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    /* Transición suave */
}

.info a:hover {
    
    color: #d7b615;
    /* Color del texto al hacer hover */
}

.row {
    justify-content: space-evenly;
}

.menu-contain {
    margin: 0;
    padding: 0;
    background-color: #2C363F;
}




.nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px; /* Espacio para la línea */
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px; /* Ajusta el grosor de la línea */
    background-color: #f1c40f; /* Color dorado */
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%; /* Se mantiene la línea completa en el enlace activo */
}

.nav-item a:hover {
    color: #d7b615;
}

.navbar-nav {
    gap: 20px;
}


.section-present{
    background-color: #2C363F;
}

.servicios {
    background-color: #E8F1F5;
}

.transition-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.transition-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.equal-height {
    height: 400px; /* Define una altura fija para todas las imágenes */
    object-fit: cover; /* Ajusta el contenido sin deformarlo */
}

.productos {
    background-color: #E8F1F5;
}

.card {
    border-radius: 10px;
    background-color: #fff;
}

.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.divider {
    width: 50px;
    height: 3px;
    background-color: #d7b615; /* Rojo */
    margin: 0 auto;
}

.icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contactos{
    background-color: #2C363F;
}

.hero-section {
    background-image: url('../img/rastreo-satelital-ecuador.jpg'); /* Ruta de la imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita la repetición de la imagen */
    height: 250px; /* Ajusta la altura de la sección */
    position: relative; /* Permite capas superpuestas */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
    z-index: 1; /* Coloca el overlay detrás del contenido */
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Coloca el contenido sobre el overlay */
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.card-img-top {
    object-fit: contain;
    max-height: 200px; /* Controla la altura máxima de las imágenes */
    margin-bottom: 1rem;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.icon-circle {
    width: 50px;
    height: 50px; /* Asegura que ancho y alto sean iguales */
    border: 2px solid #000; /* Color de borde inicial */
    border-radius: 50%; /* Hace que sea un círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: #000;
    flex-shrink: 0; /* Evita que el círculo se deforme en layouts flexibles */
}

.icon-circle:hover {
    background-color: #007bff; /* Fondo al hacer hover */
    border-color: #007bff; /* Borde al hacer hover */
    color: #fff; /* Color del ícono al hacer hover */
}

.icon-circle i {
    transition: color 0.3s ease;
    font-size: 1.5rem; /* Tamaño uniforme para los íconos */
}

.cta-section {
    background-color: #000; /* Fondo negro */
    
}

.cta-section h2 {
    font-size: 2rem; /* Ajusta el tamaño del título */
}

.cta-section p {
    font-size: 1rem; /* Ajusta el tamaño del texto */
    color: #ccc; /* Color de texto gris */
}

.cta-section .btn-success {
    background-color: #00ff00; /* Verde brillante */
    border: none;
    color: #000; /* Texto negro */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section .btn-success:hover {
    background-color: #007bff; /* Cambia a azul en hover */
    color: #fff; /* Texto blanco en hover */
}

.icons-prod {
    width: 100%;
}

.img-logo {
    width: 300px;
}

.divider {
    width: 100%;
    color: #d7b615;
}

