

/* ESTILO PARA LA PORTADA */
.container-dato-portada{
    display: flex;
    flex-direction: column;
}
.container-img-portada{
    height: 300px;
}
.container-img-portada img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (min-width: 600px){
    .container-img-portada{
        height: 600px;
    }
    .container-dato-portada{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}
.container-portada {
    background-color: #1F2937;
    background-image: linear-gradient(160deg, #1F2937 0%, #374151 52%, #1F2937 100%);
    height: 100%;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 650px;
    margin-top: 70px;
}
    
.content {
    color: white;
    z-index: 1;
    padding: 20px;
}
.titulo-portada {
    font-size: 2em !important;
    margin-bottom: 10px;
    max-width: 650px;
}


/* ESTILO PARA EXPERIENCIA */
.section-experiencia{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto !important;
    padding: 0 30px;
}
.img-experiencia{
    grid-row: 1 / span 1;
    grid-column: 1 / span 3;
}
.img-experiencia img{
    width: 100px;
    margin: auto;
}
.experiencia{
    font-size: 30px;
    grid-row: 2 / span 1;
    grid-column: 1 / span 3;
    font-weight: 900;
    text-align: center;
    color: #1f2937;
}
.experiencia-dato{
    text-align: justify;
    grid-row: 3 / span 1;
    grid-column: 1 / span 3;
}
.section-experiencia div{
    flex: 1;
}
@media screen  and (min-width: 400px){
    .img-experiencia{
        grid-row: 1 / span 1;
        grid-column: 1 / span 1;
    }
    .img-experiencia img{
        width: 150px;
    }
    .experiencia{
        grid-row: 1 / span 1;
        grid-column: 2 / span 2;
    }
    .experiencia-dato{
        grid-row: 2 / span 1;
        grid-column: 1 / span 3;
    }
}
@media screen  and (min-width: 800px){
    .section-experiencia{
        margin: 0 170px;
    }
    .img-experiencia{
        grid-row: 1 / span 1;
        grid-column: 1 / span 1;
    }
    .img-experiencia img{
        width: 100px;
    }
    .experiencia{
        grid-row: 2 / span 1;
        grid-column: 1 / span 1;
    }
    .experiencia-dato{
        grid-row: 1 / span 2;
        grid-column: 2 / span 2;
    }
}
@media screen and (min-width: 1245px){
    .section-experiencia{
        padding: 0;
    }
}


/* ESTILO PARA BENIFICIOS */
.section-benificios{
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 30px;
}
.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    flex: 1;
}
.card-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #7799b9, #1f2937);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #7799b9, #1f2937);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50%;
    margin: 10px auto;
    box-shadow: 0 4px 8px rgba(255, 117, 140, 0.3);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
p{
    text-align: justify;
}

@media screen and (min-width: 600px){
    .card-container{
        flex-direction: row;
    }
}

@media screen and (min-width: 1245px){
    .section-benificios{
        padding: 0;
    }
}

/* ESTILO PARA CALIDAD Y COMPROMISO */
.section-compromiso-calidad{
    max-width: 1200px;
    margin: 50px auto 0 auto !important;
    padding: 0 30px;
}
.section-compromiso-calidad ul{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}
.section-compromiso-calidad h2{
    font-weight: 900;
    font-size: 22px;
    text-align: center;
    color: #1f2937;
}
.section-compromiso-calidad ul li{
    line-height: 2;
    width: 120px;
    height: 120px;
    border-radius: 20%;
    font-size: 13px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 3px solid #7191B0;
    border-bottom: 3px solid #314052;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); */
    transition: box-shadow 0.5s;
    flex: 1;
}
.section-compromiso-calidad ul li:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.section-compromiso-calidad ul li i{
    font-size: 25px;
}
.section-compromiso-calidad img{
    border-radius: 20%;
    margin-top: 15px;
    display: none;
}
@media screen and (min-width: 600px){
    .section-compromiso-calidad{
        display: flex;
        margin: 50px 170px 0 170px;
        gap: 30px;
    }
    .section-compromiso-calidad img{
        width: 400px;
        display: block;
    }
    .section-compromiso-calidad .container-img{
        display: flex;
        justify-content: center;
    }
    .section-compromiso-calidad div{
        flex: 1;
    }
}

@media screen and (min-width: 1245px){
    .section-compromiso-calidad{
        padding: 0;
    }
}


/* ESTILO PARA NUESTROS CLIENTES */
.section-nuestros-clientes{
    max-width: 1200px;
    margin: 50px auto 0 auto !important;
}
.section-nuestros-clientes small{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
}
.carousel {
    width: 100% !important;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.carousel-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    gap: 55px;
}

.carousel-track img {
    width: 120px;
    height: auto;
    user-select: none;
    pointer-events: none;
    object-fit: contain;
}
.carousel {
  width: 80%;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@media screen and (min-width: 600px){
    .section-nuestros-clientes{
        margin: 50px 170px 0 170px;
    }
}


/* ESTILO PARA SOCIOS EXTRATEGICOS */
.section-socios-estrategicos{
    max-width: 1200px;
    margin: 50px auto 0 auto !important;
}
.section-socios-estrategicos small{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
}
@media screen and (min-width: 600px){
    .section-socios-estrategicos{
        margin: 50px 170px 0 170px;
    }
    
}


/* ESTILO PARA NUESTROS SERVICIOS */
.section-nuestros-servicios {
    margin: 50px auto 0 auto;
    max-width: 1200px;
    padding: 0 30px;
}
.servicios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.servicio-card {
    background: #fff;
    /* width: 350px; */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    position: relative;
    padding: 15px;
    border: 2px solid #f0f0f0;
    flex: 1;
}
.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} 
.servicio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.servicio-content {
    padding: 20px;
}
.servicio-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
} 
.line {
    width: 50px;
    height: 4px;
    background: #6B8AA7;
    margin: 5px auto 15px auto;
    border-radius: 2px;
}
.servicio-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    z-index: 50;
}
.servicio-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1F2937;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    z-index: 100;
}
.servicio-btn:hover {
    background: #6B8AA7;
    transform: scale(1.05);
}
.imagen-card-inferior{
    position: absolute;
    bottom: 0;
}
@media (max-width: 768px) {
    .servicios-container {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (min-width: 1245px){
    .section-nuestros-servicios {
        padding: 0;
    }
}
  


  
































    button {
    background-color: white;
    color: #1D658C;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 25px;
    margin-top: 15px;
    }
    .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
    }
    .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
    }
    .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    }
    .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    }
    .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    }
    .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
    }
    @keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% { 
        transform: translate3d(85px,0,0);
    }
    }
    .container{
    width: 100% !important;
    }
    
    .container-boton-login-registro a{
    box-shadow: none !important;
    }
    
    
    /* ESTILO PARA EFECTO DE ESCRITURA */
    #typing-title::after {
    content: '|';
    animation: blink 0.7s infinite;
    }
    
    @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
    }