html,
body {
    background-color: #e0e0e0;
    margin: 0;
    padding: 0;
    font-family: "Helvetica";
    overflow-x: hidden;

}



section {
    margin-top: -23px;
    padding: 4rem 2rem;

}

.hide-scroll {
    scrollbar-width: none;
}

/* Seccion home y navbar */
.home-section {
    height: 100vh;
    margin-bottom: 70px;
}

.sky-text,
.fleeter-text {
    font-family: "Antonio" ; 
    letter-spacing: 0.1px;
    
}

.large-title .sky-text {
    color: #dfd6b7;
}

.large-title .fleeter-text {
    color: #dfd6b7;
}

.large-title .copyright {
    color: #dfd6b7;
    font-size: 30px;
    vertical-align: top;
}

.small .sky-text {
    color: #2d4f72;
}

.small .fleeter-text {
    color: #2d4f72;
}


.small .copyright {
    color: #2d4f72;
}

.navbar-brand .copyright {
    font-size: 12px;
    vertical-align: top;
}


.large-title {

    font-family: 'Antonio', sans-serif;
    font-size: 70px;
    text-align: center;
    transition: all 0.5s ease;
    position: fixed;
    top: 15%;
    left: 13%;
    z-index: 500;
}


.large-title.small {
    font-size: 25px;
    top: 20px;
    left: 5%;
    z-index: 1100;
}
.large-title.small:hover{
    cursor: pointer;
}

.large-title.small>.copyright {
    font-size: 12px;
}

.navbar {
    transition: all 0.3s ease;
}



.navbar-toggler {
    border: none;

}

.toggler-white {
    filter: brightness(0) invert(1);

}

.img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    
}


.subtitle-home {
    position: absolute;
    left: 13%;
    top: 30%;
    font-size: 24px;
    width: 50%;
}

.decoration-home {
    display: flex;

    justify-content: center;

    position: absolute;

    bottom: 60px;

    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}


.semicircle {
    position: absolute;
    bottom: -50px;
    left: 0;
}

.semicircle-svg {
    width: 100vw;
}

.decoration-home svg path:nth-child(1) {
    animation: colorChange 2s infinite;
}

.decoration-home svg path:nth-child(2) {
    animation: colorChange 2s infinite 0.66s;
}

.decoration-home svg path:nth-child(3) {
    animation: colorChange 2s infinite 1.33s;
}

@keyframes colorChange {

    0%,
    100% {
        fill: #2d4f72;

    }

    50% {
        fill: #42484f;

    }
}





/* responsive */
@media (max-width: 991px) {
    .btn-contactanos-navbar {
        font-size: 14px !important;
    }

    .btn-app-navbar {
        font-size: 14px !important;
    }


    .big-brand {
        font-size: 50px;
    }

    .semicircle {
        bottom: -50px;
    }

    .subtitle-home {
        left: 15%;
        font-size: 20px;
    }
    .subtitle-home {
     
        width: 80%;
    }
    


}

@media (max-width: 480px) {
    .large-title {
        font-size: 40px;
        left: 5%;
    }

    .big-brand {
        font-size: 40px;
    }

    .subtitle-home {
        left: 5%;
        top: 200px;
        font-size: 16px;
    }


    .semicircle {
        bottom: -80px;
    }
}


/* Seccion servicios */
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.feature-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    justify-content: space-evenly;
    align-items: center;
}

.gas-section .feature-container,
.gps-section .feature-container {
    flex-direction: row-reverse;
}


.feature-image {
    position: relative;
    width: 500px;
    height: auto;
    background: #45444400;


    overflow: hidden;
}


.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.feature-content {
    max-width: 50%;
    text-align: left;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #011d39;
    /* color: #2c3e50; */
}

.feature-content h2 span {
    color: #2d4f72;
}

.feature-content h3 {
    font-size: 1.7rem;
    /* color: #2c3e50; */
    color: #011d39;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: #011d39;
    margin-bottom: 2rem;
}



.feature-list li  {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #011d39;
    
    position: relative;
    padding-left: 30px;

}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;

    height: 20px;

    background-image: url('/img/flechas-horizontal.svg');

    background-size: contain;

    background-repeat: no-repeat;

}



/* Responsive */
@media (max-width: 1024px) {

    .gas-section .feature-container,
    .gps-section .feature-container {
        flex-direction: column;
    }

    .feature-container {
        flex-direction: column;
        text-align: start;
    }

    .feature-image,
    .feature-content {
        max-width: 100%;
    }

    .feature-content {
        text-align: left;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1.1rem;
    }

    .feature-list li {
        justify-content: left;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .feature-image {
        width: 300px;
    }

    .features-section {
        padding: 2rem 1rem;
    }

    .feature-content h2 {
        font-size: 1.8rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .feature-content p {
        font-size: 1.2rem;
    }



    .gas-section .feature-container,
    .gps-section .feature-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 14px;

    }

    .feature-list li {
        font-size: 14px;
    }


}

/* estilos modulos section */
.modules-section {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;

    align-items: center;

    padding: 0px 0px 50px 0px !important;
    color: #333;
}

.modules-section .section-header {
    background-color: #2d4f72;
    width: 100%;
    max-height: 450px;
    text-align: left;
    display: flex;
    flex-direction: row;
    
    align-items: center;
    position: relative;
}


.modules-header-text {
    padding: 20px 5%;
    z-index: 2;
    

}

.modules-header-img {
    height: 400px;
    z-index: 1;

    position: relative;
}

.modules-header-img img {
    height: 400px;

    opacity: 0.8;
    mask-image: linear-gradient(90deg, rgba(9, 98, 121, 0) 0%, rgba(0, 212, 255, 1) 100%);
}

.modules-section .section-header h2 {
    color: #ffffff;
    font-size: 3.5rem;
}

.modules-section .section-header p {
    color: #e8e8e8;
    ;
    text-align: left !important;
    width: 100%;
}



.modules-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.modules-content {
    flex: 1;
    max-width: 600px;
}


.modules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    padding-left: 10% !important;
}

.module-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 10px 10px 20px;
    border-radius: 10px;
    min-height: 100px;
    min-width: 110px;
    transition: all 1s;

}

.module-item:hover {
    background-color: white;
    cursor: pointer;
}

.module-item.active {
    background-color: #f0f8ff;

    border-left: 4px solid #2d4f72;


}


.module-item i {
    flex-shrink: 0;

}

.module-item h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #011d39;
}

.module-item p {
    margin: 5px 0 0;
    color: #666;
}


.modules-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.modules-image img {
    max-width: 175%;
    height: auto;
    border-radius: 8px;

    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);

}

@media (max-width: 1083px) {
    .modules-section .section-header {
        flex-direction: column;

        text-align: center;
        background: url('/img/office banner.png') no-repeat center/cover;

        position: relative;
    }


    .modules-section .section-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #2d4f72f3;

        z-index: 1;

    }

    .modules-header-text {

        padding: 40px 10%;

        position: relative;

        z-index: 2;
    }

    .modules-header-img {
        display: none;

    }

    .modules-section .section-header h2 {
        font-size: 3rem;

    }

    .modules-section .section-header p {
        text-align: center !important;
        font-size: 1rem;

    }
}



@media (max-width: 768px) {
    .modules-section {
        flex-direction: column;

        align-items: center;

    }

    .modules-header-text h2 {
        font-size: 3rem !important;
    }

    .modules-header-text p {
        font-size: 1rem !important;
    }

    .modules-image {
        width: 100%;
        height: 60vh;

        overflow: hidden;

        position: relative;
    }


    .modules-image img {
        width: 100%;

        height: 100%;
        object-fit:cover;
        object-position: left;

    }

    .modules-content {
        width: 100%;
        margin-top: 20px;

        text-align: center;
    }

    .modules-list {
        padding-left: 0;
        padding-right: 10px;
        width: 70%;
    }

    .module-item {
        flex-direction: column;

        align-items: center;
        padding: 10px;
        border: none;
        margin-bottom: 20px;
        background-color: #f7f7f7;
        border-radius: 8px;

    }

    .module-item i {
        font-size: 50px;
        margin-bottom: 10px;
        margin-right: 0 !important;
    }

    .module-item h3 {
        font-size: 1.2rem;

    }

    .module-item p {
        display: none;
    }
}


@media (max-width: 480px) {
    .modules-header-text h2 {
        font-size: 2.5rem !important;
    }

    .modules-header-text p {
        font-size: 14px !important;
    }

    .module-item i {
        font-size: 40px;
    }


    .module-item h3 {
        font-size: 14px;
    }

    .module-item p {
        font-size: 14px;
    }
}


/* seccion marcas y clientes */
.allies-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}



/* CAROUSEL */
.carousel-container {
    overflow: hidden;
    width: 100%;
    height: 250px;
    padding: 1rem 0;
    align-content: center;
}

.personalized-carousel {
    display: flex;
    gap: 4rem;
    width: fit-content;
    animation: scroll 30s linear infinite;

}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: all 0.3s;
}

.umi-logo img{
    object-fit: cover !important;
    max-width: 150% !important;
    min-width: 150% !important;
}
.dieselcop img{
    max-width: 70% !important;
    min-width: 70% !important;
}
.diparvel img{
    max-width: 50% !important;
    min-width: 50% !important;
}
.hylsa img{
    object-fit: cover !important;
    max-width: 120% !important;
    min-width: 120% !important;
}
.unik img{
    object-fit: cover !important;
    max-width: 120% !important;
    min-width: 120% !important;
}
.complex img{
    object-fit: cover !important;
    max-width: 100% !important;
    min-width: 100% !important;
}
.logo-card:hover {
    transform: scale(1.1);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 450px) {
    .allies-container .logo-card {
        width: 100px;
        height: 66px;
    }

    .umi-logo{
        width: 150px !important;
        height: 100px !important;
    }
    
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 18 - 4rem * 18));
    }
}

/* seccion mapa */

.map-section .section-header h2{
   
    font-weight: bold;

}
.map-section .section-header p{
   
    text-align: left;
    color: #686868;

}

/* .map-section ul{
    list-style: none;
    color: #7f8c8d;
} */
.map-section li  {
    display: flex;
   
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #686868;
    
    position: relative;
    padding-left: 30px;

}

.map-section li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;

    height: 20px;

    background-image: url('/img/flechas-horizontal.svg');

    background-size: contain;

    background-repeat: no-repeat;

}
.map-container {
    transition: all 1s;

}

.map-container:hover {
    transform: scale(1.05);

}

@media (max-width: 1000px) {

    .map-section .row {
        flex-direction: column-reverse;
    }
    .map-container{
        margin-bottom: 50px;
    }
    .map-container img{
        min-width:300px !important;
        object-fit: contain;
        object-position: center;
    }
    .map-section .section-header p{
   
     text-align: left;

    }
}



/* seccion planes */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #011d39;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-plan {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.plan-header {
    background-color: #2d4f72;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.1rem;
    font-style: italic;
}

.plan-features {
    padding: 2rem;
}

.plan-features .feature-list {
    padding: 0;
    margin: 0;
}

.plan-features>.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}


.plan-cta {
    padding: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #2d4f72;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
}

.cta-button:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* video carousel  */
/* .mi-carousel-container {
    position: relative;
    width: 30%;
    margin: auto;
    overflow: hidden;
}

.mi-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.mi-carousel-item {
    min-width: 100%;
    background-color: rgba(255, 255, 255, 0);

}

.mi-carousel-item video {
    width: 100%;
    height: auto;
    border-radius: 20px;
} */


/* .mi-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0);
    color: #2c3e50;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.mi-prev {
    left: 10px;
}

.mi-next {
    right: 10px;
}

.mi-carousel-button:hover {
    color: #29ABE2;
} */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-header p {
    font-size: 18px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.about-image {
    justify-items: center;
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    
}

.about-image img {
    width: 200px;
    height: auto;
    display: block;
}




/* FOOTER  */
footer {
    background-color: #11161ab7;
    background-image: url('/img/footer.avif'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay; /* This creates the semi-transparent effect */
    padding: 20px; /* Adjust padding as needed */
}
footer ul li a:hover {
    text-decoration: underline;
}

footer .bi {
    font-size: 1.5rem;
}

footer .bi:hover {
    color: #2d4f72;

}

/* form style */
form {
    margin-top: 1rem;
}

form .form-label {
    font-weight: bold;
    color: #ffffff;
}

form .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0.3rem;
}

form button {
    background-color: #2d4f72;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #2d4f72;
}

#formAlert {
    font-size: 0.9rem;
    text-align: center;
}



/* estilos boton whatsapp */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

/* Ocultar el botón en dispositivos muy pequeños si no es necesario */
@media (max-width: 480px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }
}