/* Reset del formulario de ASP.NET */
#form1 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* Ocultar elementos generados por ASP.NET */
.aspNetHidden {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* Reset de los ContentPlaceHolders */
#MainContent, #HeadContent, #TitleContent {
    display: block;
    margin: 0;
    padding: 0;
}

/* Asegurar que los contenedores ASP.NET no interfieran */
.container-aspnet {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Fix para ViewState y otros hidden fields */
input[type="hidden"] {
    position: absolute !important;
    left: -9999px !important;
}

/* Event Validation */
#__EVENTVALIDATION, #__VIEWSTATE {
    display: none !important;
    visibility: hidden !important;
}


html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* Estilos generales */
html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Navbar  */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 690px; /* Add space between logo and menu */
    align-items: center;
    padding: 15px 20px; /* Add more horizontal padding */
    transition: padding 0.3s ease;
    max-width: 100%; /* Add a max-width */
    margin: 0 auto; /* Center the container */
}

.nav-logo .logo {
    height: 90px;
    transition: height 0.3s ease;
    transform: scale(1.6);
    transform-origin: left center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px; /* Reduced gap for more flexibility */
    margin: 0;
    padding: 0;
    font-size: 1.2em; /* Slightly smaller font */
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #F2A900, #0A244B);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #0A244B;
        transform: translateY(-2px);
    }

.cta-button {
    background: linear-gradient(45deg, #F2A900, #e09a00);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
        z-index: 1;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(242, 169, 0, 0.3);
    }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A244B 0%, #0A244B 100%);
    color: #fff;
    text-align: center;
    padding: 150px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

@media (min-width: 1025px) {
    .hero {
        min-height: 100vh;
        overflow: hidden;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

    .slide.active {
        opacity: 0.2;
    }

.slide-1 {
    background-image: url('../img/compus.webp');
}

.slide-2 {
    background-image: url('../img/reunion.webp');
}

.slide-3 {
    background-image: url('../img/team.webp');
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiM5ZmE3YjIiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMjkuOTg1IDYwYy0xNi41MzkgMC0zMC0xMy40NjEtMzAtMzBzMTMuNDYxLTMwIDMwLTMwIDMwIDEzLjQ2MSAzMCAzMC0xMy40NjEgMzAtMzAtMzB6TTMwIDUuMTU2Yy0xMy43MjIgMC0yNC44NDQgMTEuMTIyLTI0Ljg0NCAyNC44NDRzMTEuMTIyIDI0Ljg0NCAyNC44NDQgMjQuODQ0IDI0Ljg0NC0xMS4xMjIgMjQuODQ0LTI0Ljg0NFM0My43MjIgNS4xNTYgMzAgNS4xNTZ6Ii8+PC9nPjwvZz48L3N2Zz4=') repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(242, 169, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

    .floating-icon:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-icon:nth-child(2) {
        top: 60%;
        right: 15%;
        animation-delay: 1s;
    }

    .floating-icon:nth-child(3) {
        bottom: 30%;
        left: 20%;
        animation-delay: 2s;
    }

    .floating-icon:nth-child(4) {
        top: 40%;
        right: 25%;
        animation-delay: 1.5s;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

    .hero-title .highlight {
        color: #F2A900;
        animation: pulse 2s ease-in-out infinite;
    }

.hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.1em;
    font-weight: 500;
    color: #ADD8E6;
    margin-bottom: 40px;
    letter-spacing: 2px;
    overflow: hidden;
    border-right: 3px solid #F2A900;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .hero-buttons a {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #F2A900, #e09a00);
    color: #0A244B;
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(242, 169, 0, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    }

/* GPS Animation */
.gps-animation {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gps-pulse {
    width: 60px;
    height: 60px;
    border: 3px solid #F2A900;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

    .gps-pulse::before,
    .gps-pulse::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: 60px;
        height: 60px;
        border: 3px solid rgba(242, 169, 0, 0.5);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    .gps-pulse::before {
        animation-delay: 0.5s;
    }

    .gps-pulse::after {
        animation-delay: 1s;
    }

/* Interactive Map Section */
.interactive-map {
    position: relative;
    margin: 80px auto;
    padding: 40px 20px;
    background: rgba(10, 36, 75, 0.05);
    border-radius: 20px;
    text-align: center;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#liveMap {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-align: left;
}

    .map-overlay h3 {
        color: #0A244B;
        margin-bottom: 10px;
    }

    .map-overlay p {
        color: #555;
        font-size: 0.9em;
    }

/* Stats Section */
.stats {
    background: rgba(242, 169, 0, 0.1);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #0A244B;
    display: block;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
}

/* Services Section */
.services {
    padding: 100px 0;
    text-align: center;
    background: #052033;
    margin-top: 0px;
    min-height: 100vh;
    display: flex;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #0A244B;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #F2A900, #0A244B);
        border-radius: 2px;
    }

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

#soluciones #subtit {
    font-size: 1.2em;
    color: #cec8c8;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #F2A900, #0A244B);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    font-size: 3.5em;
    color: #F2A900;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5em;
    color: #0A244B;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

    .service-card ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #444;
        transition: transform 0.2s ease;
    }

        .service-card ul li:hover {
            transform: translateX(5px);
        }

        .service-card ul li .fa-check-circle {
            color: #10B981;
        }

.vapa-logo {
    max-width: 50%;
    height: auto;
    margin-top: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #052033;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: -110px;
}


.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    width: auto;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* About Section */
.about {
    background-color: #052033;
    color: #fff;
    padding: 45px 0 80px;
    position: relative;
    margin-top: 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: justify;
}

#nosotros #titwhite,
#soluciones #titwhite {
    color: #fff;
    font-size: 2.5em;
    position: relative;
    text-align: center;
}

.about-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ADD8E6;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

    .about-text ul li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 1.1em;
        color: #fff;
        animation: slideInLeft 0.6s ease-out;
        animation-fill-mode: both;
    }

        .about-text ul li:nth-child(2) {
            animation-delay: 0.2s;
        }

        .about-text ul li:nth-child(3) {
            animation-delay: 0.4s;
        }

        .about-text ul li .fas {
            color: #F2A900;
            font-size: 1.2em;
        }

.about-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
    position: relative;
}

.about-logo {
    max-width: 80%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.about + .gallery {
    margin-top: 0;
    padding-top: 35px;
}

/* Testimonials Section - Nueva sección */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f7f6 0%, #e8f4f8 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
}

    .testimonial.active {
        display: block;
        animation: fadeInUp 0.5s ease;
    }

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

    .testimonial-text::before,
    .testimonial-text::after {
        content: '"';
        font-size: 3em;
        color: #F2A900;
        opacity: 0.3;
        position: absolute;
    }

    .testimonial-text::before {
        top: -20px;
        left: -10px;
    }

    .testimonial-text::after {
        bottom: -40px;
        right: -10px;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F2A900;
}

.author-info h4 {
    color: #0A244B;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9em;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .testimonial-dot.active {
        background: #F2A900;
        transform: scale(1.2);
    }

/* Contact Section */
.contact {
    padding: 85px 0;
    background: linear-gradient(135deg, #f4f7f6 0%, #e8f4f8 100%);
    text-align: center;
    display: flex;
    align-items: flex-start;
    min-height: 100vh
}

.contact-grid {
    display: grid;
    /* grid-template-columns: 1fr 1.2fr; */
    gap: 40px;
    margin-top: 40px;
    text-align: left;
    align-items: center;
    min-height: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    min-height: auto;
    overflow: visible;
    position: relative;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-height: auto;
}

    .info-item:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .info-item i {
        font-size: 1.6em;
        color: #0A244B;
        width: 35px;
        text-align: center;
        flex-shrink: 0;
        padding-top: 3px;
    }

.info-item-content h4 {
    font-size: 1em;
    color: #0A244B;
    margin-bottom: 6px;
}

.info-item-content p,
.info-item-content a {
    color: #555;
    font-size: 0.9em;
    line-height: 1.4;
    text-decoration: none;
}

.info-item h4 {
    font-size: 1.3em;
    color: #0A244B;
    margin-bottom: 5px;
}

.info-item p {
    color: #555;
    font-size: 1.1em;
}

/* .contact-form-container {

    background: #fff;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

    height: auto;

    display: none;

} */



/* .contact-form h3 {

    font-size: 1.4em;

    color: #0A244B;

    margin-bottom: 20px;

} */



/* .form-group {

    margin-bottom: 20px;

    position: relative;

} */



    /* .form-group input,

    .form-group textarea,

    .form-group select {

        width: 100%;

        padding: 15px;

        border: 2px solid #e1e5e9;

        border-radius: 10px;

        font-size: 1em;

        transition: all 0.3s ease;

        font-family: 'Roboto', sans-serif;

    } */



        /* .form-group input:focus,

        .form-group textarea:focus,

        .form-group select:focus {

            border-color: #0A244B;

            outline: none;

            box-shadow: 0 0 0 3px rgba(10, 36, 75, 0.1);

        } */



    /* .form-group label {

        position: absolute;

        left: 15px;

        top: 15px;

        color: #999;

        pointer-events: none;

        transition: all 0.3s ease;

    } */



    /* .form-group input:focus ~ label,

    .form-group textarea:focus ~ label,

    .form-group input:valid ~ label,

    .form-group textarea:valid ~ label {

        top: -10px;

        left: 10px;

        font-size: 0.8em;

        background: #fff;

        padding: 0 5px;

        color: #0A244B;

    } */



    /* .form-group select:not([value=""]) ~ label,

    .form-group select:valid ~ label {

        top: -10px !important;

        left: 10px !important;

        font-size: 0.8em !important;

        background: #fff !important;

        padding: 0 5px !important;

        color: #0A244B !important;

    } */



    /* .form-group select:required:invalid {

        color: #999;

    } */



    /* .form-group select option {

        color: #333;

    } */



        /* .form-group select option[value=""][disabled] {

            display: none;

        } */



/* .form-error {

    color: #e74c3c;

    font-size: 0.8em;

    margin-top: 5px;

    display: none;

} */



/* .submit-button {

    background: linear-gradient(45deg, #0A244B, #1E40AF);

    color: #fff;

    border: none;

    padding: 15px 30px;

    border-radius: 25px;

    cursor: pointer;

    font-size: 1.1em;

    font-weight: 500;

    transition: all 0.3s ease;

    width: 100%;

} */



    /* .submit-button:hover {

        transform: translateY(-3px);

        box-shadow: 0 10px 25px rgba(10, 36, 75, 0.3);

    } */



#mails {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 12px;

}



.icono-mail {

    width: 18px;

    height: 18px;

    stroke: white;

    transition: transform 0.3s ease;

}



.email-quick-btn {

    visibility: hidden;

}



/* Footer */

.footer {

    background: linear-gradient(135deg, #333 0%, #0A244B 100%);

    color: #fff;

    padding: 30px 0 15px;

    text-align: center;

}



.footer-content {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 20px;

    text-align: left;

}



.footer-section {

    flex: 1;

    min-width: 200px;

}



.footer-logo {

    height: 80px;

    margin-bottom: 10px;

    width: auto;

    left: 130px;

    position: relative;

}



.footer-section p {

    font-size: 0.85em;

    line-height: 1.5;

    color: #ccc;

    margin-top: 8px;

}



.footer-section h4 {

    font-size: 1em;

    color: #F2A900;

    margin-bottom: 10px;

    font-weight: 600;

}



.footer-section ul {

    list-style: none;

    padding: 0;

    margin: 0;

}



    .footer-section ul li {

        margin-bottom: 8px;

        transition: transform 0.2s ease;

    }



        .footer-section ul li:hover {

            transform: translateX(3px);

        }



        .footer-section ul li a {

            text-decoration: none;

            color: #ddd;

            transition: color 0.3s ease;

            font-size: 0.9em;

            display: inline-block;

            padding: 2px 0;

        }



            .footer-section ul li a:hover {

                color: #F2A900;

            }



.footer-bottom {

    border-top: 1px solid #555;

    padding-top: 15px;

    margin-top: 20px;

    font-size: 0.85em;

    color: #aaa;

    line-height: 1.4;

}



.footer #nave {

    left: 280px;

    position: relative;

}





.footer #oursol {

    left: 205px;

    position: relative;

}



/* Modal para galería */

.modal {

    display: none;

    position: fixed;

    z-index: 1000;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.9);

    overflow: auto;

}



.modal-content {

    position: relative;

    margin: auto;

    display: block;

    width: 80%;

    max-width: 700px;

    margin-top: 50px;

    animation: zoom 0.6s;

}



@keyframes zoom {

    from {

        transform: scale(0)

    }



    to {

        transform: scale(1)

    }

}



.close {

    position: absolute;

    top: 15px;

    right: 35px;

    color: #f1f1f1;

    font-size: 40px;

    font-weight: bold;

    transition: 0.3s;

    cursor: pointer;

}



    .close:hover,

    .close:focus {

        color: #F2A900;

        text-decoration: none;

    }



/* Scroll Animations */

.animate-on-scroll {

    opacity: 0;

    transform: translateY(30px);

    transition: all 0.6s ease;

}



    .animate-on-scroll.animated {

        opacity: 1;

        transform: translateY(0);

    }



.module-matrix {

    padding: 80px 0;

    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);

    text-align: center;

    min-height: 100vh;

    overflow: visible;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}



    .module-matrix .container {

        margin-top: -60px;

    }



.module-matrix-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 11px;

    margin-top: -20px;

    margin-bottom: 30px;

}



.matrix-item {

    text-align: center;

    padding: 25px 15px;

    border-radius: 15px;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

    border: 2px solid transparent;

    position: relative;

    overflow: hidden;

    min-height: 220px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: center;

    height: auto;

}



    .matrix-item > div {

        display: flex;

        flex-direction: column;

        align-items: center;

        height: 100%;

        width: 100%;

    }



    .matrix-item::before {

        content: '';

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 4px;

        background: linear-gradient(45deg, #F2A900, #0A244B);

        transition: transform 0.3s ease;

    }



    .matrix-item:hover {

        transform: translateY(-10px);

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

        border-color: rgba(242, 169, 0, 0.2);

    }



        .matrix-item:hover::before {

            transform: scaleX(1.1);

        }



.matrix-icon {

    font-size: 2.5em;

    margin-bottom: 15px;

    transition: transform 0.3s ease;

    color: inherit;

}



.matrix-item:hover .matrix-icon {

    transform: scale(1.08);

}



.matrix-item h3 {

    font-size: 1.2em;

    color: #0A244B;

    margin-bottom: 10px;

    font-weight: 600;

    line-height: 1.3;

}



.matrix-item p {

    font-size: 0.9em;

    color: #555;

    line-height: 1.4;

    margin: 0;

    flex-grow: 1;

}



/* Definir colores para cada módulo */

.color-contabilidad {

    color: #28a745;

}



.color-trafico {

    color: #007bff;

}



.color-facturacion {

    color: #6f42c1;

}



.color-cobranza {

    color: #20c997;

}



.color-refacciones {

    color: #fd7e14;

}



.color-mantenimiento {

    color: #dc3545;

}



.color-llantas {

    color: #17a2b8;

}



.color-cxp {

    color: #e83e8c;

}



.color-bancos {

    color: #6610f2;

}



.color-informes {

    color: #20c997;

}



.color-nominas {

    color: #ffc107;

}



.color-gps-integration {

    color: #0A244B;

}



/* Estilos para reCAPTCHA */

/* .recaptcha-container {

    margin: 10px 147px;

    padding: 8px;

    background: #f8f9fa;

    border-radius: 8px;

    border: 1px solid #e9ecef;

} */



/*#recaptcha-widget {

    display: flex;

    justify-content: center;

    margin-bottom: 10px;

    min-height: 78px;*/ /* Altura del widget */

/*}*/



/* .recaptcha-info {

    margin-top: 10px;

    font-size: 12px;

    color: #6c757d;

    text-align: center;

} */



    /* .recaptcha-info a {

        color: #007bff;

        text-decoration: none;

    } */



        /* .recaptcha-info a:hover {

            text-decoration: underline;

        } */

/* Para el widget compacto */
/*.grecaptcha-badge {
    visibility: visible !important;
}*/


/* Botón deshabilitado */
/*#submitButton:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background-color: #6c757d !important;
}*/

/* Botón habilitado */
/*#submitButton:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
}*/

/* Efecto cuando el botón está listo */
/*.button-ready {
    animation: pulse-button 2s infinite;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}*/

/* Indicador de éxito de reCAPTCHA */
/*.recaptcha-success {
    color: #28a745;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}*/

/* Estado visual del formulario */
/*.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.05);
}*/

/* Tooltip personalizado */
/*#submitButton[title] {
    position: relative;
}

    #submitButton[title]:hover::after {
        content: attr(title);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
        margin-bottom: 5px;
    }

    #submitButton[title]:hover::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: #333;
        margin-bottom: -5px;
        z-index: 1000;
    }*/
