* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial;
    overflow-x: hidden;
}

/*HEADER*/

/*Background*/
.page-header {
    position: relative;
    min-height: 600px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/IMG_3199.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Animacion de carga*/
@keyframes entradaSuave {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Logos*/
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-instrans {
    height: 100px;
    width: auto;
    border-radius: 8px;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0));
}

.logo-sansebastian {
    height: 100px;
    width: 210px;
    border-radius: 8px;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0));
}

.socials {
    display: flex;
    gap: 20px;
}

.socials .social-icon {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.socials .social-icon svg {
    width: 35px;
    height: 35px;
}

.social-icon.linkedin:hover {
    color: #0077B5;
    transform: scale(1.2);
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    color: #1877F2;
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    color: #E4405F;
    transform: translateY(-3px) scale(1.1);
}

/*Barra de navegacion*/
.navbar {
    margin-top: 50px;
    width: 100%;
    background-color: #00000085;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    animation: entradaSuave 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.navbar a:hover {
    background-color: #0a5eb162;
}

.nav-trabajo {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #00c3ff9f;
    color: #fdfdfd !important;
    padding: 8px 15px !important;
    border-radius: 20px;
    transition: background 0.3s;
}

.nav-trabajo:hover {
    background-color: #0a5eb162;
}

.menu-toggle {
    display: none;
}

/*Texto del header*/

.header-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-left: 10%;
}

.header-title-index {
    text-align: left;
    max-width: 50%;
    color: white;
    margin: 0;
}

.header-title {
    font-size: 250%;
    text-align: center;
    justify-content: center;
    color: white;
}

.header-text p {
    text-align: left;
    max-width: 50%;
    line-height: 1.6;
    margin-top: 20px;
}

/*Seccion Identidad General*/
.identidad-seccion {
    padding: 80px 10%;
    background-color: #ffffff;
}

.titulo-seccion {
    text-align: center;
    font-size: 2.5rem;
    color: #004494;
    margin-bottom: 50px;
}

.identidad-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.identidad-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.identidad-col:hover {
    transform: translateY(-10px);
}

.identidad-contenido {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

.identidad-contenido h3 {
    color: #004494;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.identidad-contenido p {
    color: #555;
    line-height: 1.6;
}

.identidad-imagen-wrapper {
    height: 250px; 
    width: 100%;
    justify-content: flex-end;
}

.img-identidad {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top: 1px solid #eee;
}

/*Seccion ¿Porque elejirnos?*/
.propuesta-valor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 10%;
    background-color: #f3f2f2;
}

.texto-propuesta {
    flex: 1.5;
}

.texto-propuesta h2 {
    color: #004494;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.texto-propuesta p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.stats-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #004494;
    margin-bottom: 0;
}

.stat-card h3 {
    margin: 0;
    color: #004494;
    font-size: 1.8rem;
}

/*Seccion Mision y Vision*/

.mision-vision-seccion {
    padding-top: 40px;
    width: 100%;
    padding: 80px 10%;
    background-color: #f8f9fa;
    text-align: center;
    flex-wrap: wrap;
}

.mision-vision-seccion .titulo-seccion {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 50px;
}

.mision-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px;
    justify-content: center;
    justify-items: center;
    max-width: 1200px;
    margin: 30px auto;
}

.mision-grid-container .valor-card {
    margin-bottom: 0;
    width: 85%;
    height: 200px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mision-grid-container .valor-card:hover {
    transform: scale(1.02);
    z-index: 5;
    cursor: pointer;
}

.valor-card svg {
    width: 45px;
    height: 45px;
    color: #ffffff;
    transition: color 0.4s;
    transition: transform 0.4s ease;
    margin-bottom: 10px
}

.valor-card:hover svg {
    color: #ffcc00;
    transform: scale(1.2) rotate(5deg);
}

/* Seccion Infraestructura*/
.infraestructura-destacada {
    background-image: linear-gradient(rgba(0, 0, 100, 0.521), rgba(0, 0, 50, 0.425)), url('../img/instransfront.webp');
    background-size: cover;
    color: white;
    padding: 100px 10%;
    text-align: center;
}

.infra-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
}

.infra-item .numero {
    padding: 20px 20px 10px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00c3ffd3;
    display: block;
}

.infra-item p {
    padding: 0 20px 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.infra-item {
    background-color: #00000021;
    height: 150px;
    width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

/*Seccion Clientes*/
.alianzas-seccion-unificada {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
    .titulo-seccion {
        text-transform: uppercase;
    }
}

.subtitulo-seccion {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.alianza-grupo h3 {
    font-size: 1.3rem;
    color: #004494;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    width: 100%;
    max-width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    padding: 15px;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.divisor-suave {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
    margin: 60px 0;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 40px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #012247;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #00c3ff9f;
    transform: translateY(-5px);
}

/*Seccion Contacto*/
.contacto {
    padding: 80px 10%;
    background: #f4f7f6;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contacto-info-box h2 {
    margin-top: 10px;
}

.contacto-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.lista-beneficios {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.lista-beneficios li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444;
}

.lista-beneficios svg {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-enviar {
    background: #004494;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-enviar:hover {
    background: #00c3ff9f;
    transform: translateY(-3px);
}

/*Footer*/
.main-footer {
    background-color: #004494;
    color: white;
    padding: 60px 10% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #00c3ff9f;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-brand .footer-logos {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-brand .footer-logos img {
    height: 80px;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0));
    padding: 5px;
    border-radius: 5px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/*Historia*/
.historia-main {
    padding: 60px 10%;
    background-color: #f4f7f6;
}

.timeline-v2 {
    position: relative;
    max-width: 1100px;
    margin: 50px auto;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00c3ff9f, #004494);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    width: 100%;
}

.timeline-item.row-reverse {
    flex-direction: row-reverse;
}

.timeline-text {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-image {
    width: 45%;
}

.timeline-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #004494;
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
}

.timeline-icon svg {
    width: 25px;
    height: 25px;
}


.organigrama {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.organigrama-text {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 30px;
    border: 2px solid #31d16e;
    border-radius: 15px;
}

.organigrama-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.organigrama-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #004494;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.organigrama-card h4 {
    color: #004494;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.organigrama-img {
    max-width: 100%;
    height: auto;
    max-height: 450px; 
    object-fit: contain; 
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: white;
    margin: auto;
    display: block;
}

.modal-organigrama {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

/* La imagen dentro del modal */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid white;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #bbb;
}

/*Trabaja con nosotros*/
input[type="file"] {
    background: white;
    padding: 10px;
    border: 1px dashed #004494;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    background-color: #004494;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

/*Politica SSO*/
.sso-main {
    padding: 50px 10%;
    background-color: #f4f4f4;
}

.sso-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.puntos-politica {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.punto-item {
    border-top: 4px solid #004494;
    padding-top: 15px;
}

.punto-item h3 {
    color: #004494;
    margin-bottom: 10px;
}

/*Servicios*/
.servicios-page {
    padding-bottom: 50px;
}

.empresa-servicios {
    padding: 80px 10%;
}

.bg-alt {
    background-color: #f8f9fa;
}

.servicios-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    background: #004494;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.servicios-header h2 {
    margin-top: 10px;
}

.cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.servicio-card {
    flex: 0 1 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-10px);
}

.servicio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servicio-card h3 {
    color: #004494;
    padding: 20px 20px 10px;
}

.servicio-card p {
    padding: 0 20px 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.flota-highlight {
    background: #004494;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    
    h4 {
        text-transform: uppercase;
    }
}

.flota-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.flota-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flota-item strong {
    color: #00c3ff9f;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000cc;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    top: 100%;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.85rem;
}

.dropdown-content a:hover {
    background-color: #0a5eb162;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*Actividades Destacadas*/
.actividades-main {
    padding: 60px 10%;
    background-color: #f4f7f6;
}

.actividades-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.actividad-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.actividad-card:hover {
    transform: translateY(-5px);
}

.actividad-img {
    position: relative;
    height: auto;
}

.actividad-video {
    display: flex;
    justify-content: center;
    background-color: #000; 
    overflow: hidden;
    background-clip: content-box;
    border-top: 20px solid #2c7bd6;
}

.video-actividad {
    max-width: 100%;
    height: 400px;
    display: block;
    object-fit: contain;
}

.actividad-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categoria-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #004494;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.actividad-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fecha-actividad {
    color: #00c3ff9f;
    font-size: 0.85rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.actividad-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.25rem;
}

.actividad-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/*Ajustes celulares o tablets*/
@media (max-width: 768px) {

    .logo-container {
        position: relative;
        top: 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .navbar {
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mision-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        justify-items: center;
    }

    .timeline-v2::before {
        left: 30px;
    }

    .timeline-item, .timeline-item.row-reverse {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 50px;
    }

    .timeline-text, .timeline-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-icon {
        left: 30px;
    }

    .organigrama-container {
        flex-direction: column;
    }

    .organigrama-card, .organigrama-info {
        width: 100%;
        flex: none;
    }

    .organigrama-info {
        order: -1;
        margin-bottom: 20px;
    }

    .empresa-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        justify-content: center;
    }

    .empresa-logo-box {
        flex-direction: column;
        gap: 10px;
    }

    .empresa-logo-box h3 {
        font-size: 1.2rem;
    }

    .empresa-redes {
        width: 100%;
        justify-content: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }
    .video-vertical {
        height: auto;
        max-height: 500px;
    }
}

/* Estilos para las páginas de confirmación */
.bg-confirmacion {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.confirmacion-container {
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.mensaje-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.exito-border { border-top: 6px solid #31d16e; }
.error-border { border-top: 6px solid #e4405f; }

.mensaje-card h1 {
    margin: 20px 0;
    color: #333;
}

.mensaje-card p {
    color: #666;
    margin-bottom: 10px;
}

.botones-confirmacion {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }
    
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    
    .navbar a {
        display: none;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .navbar.active a {
        display: block;
    }
    .header-text {
        padding-left: 5%;
        padding-right: 5%;
        align-items: center;
    }
    
    .header-title-index, .header-text p {
        max-width: 100%;
        text-align: center;
    }
    
    .propuesta-valor {
        flex-direction: column;
        padding: 40px 5%;
    }
    
    .mision-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .infra-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .infra-item {
        width: 100%;
        max-width: 350px;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .organigrama-container {
        flex-direction: column;
        gap: 20px;
    }

    .organigrama-card {
        min-width: 100%;
    }

    .servicio-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .flota-grid {
        flex-direction: column;
        gap: 10px;
    }

    .sso-container {
        padding: 20px;
    }

    .puntos-politica {
        grid-template-columns: 1fr;
    }

    .actividades-grid {
        grid-template-columns: 1fr;
    }

    .video-actividad {
        height: auto;
        max-height: 300px;
    }

    .contacto-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contacto-form-card {
        padding: 20px;
    }

    .dropdown-content {
        position: static;
        background-color: #00000044;
        min-width: 100%;
    }
}