
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    height: 100px;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
}

.navbar-brand img {
    max-height: 50px; 

}
.btn-primary {

    border-radius: 50px !important;
    background-color: #1C8EFF;
    font-family: 'Kanit';
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    height: 40px;
}
.btn-outline-primary{
    border-radius: 50px !important;
    color:#07044D;
    font-weight: 600;
    border: 1px solid #07044D;
    width: 200px;
    height: 40px;
    font-family: 'Kanit';

}

.btn-primary:hover{

    border-radius: 50px !important;
    background-color: #fff;
    color: #17558F;
}
.btn-outline-primary:hover{

   
    color: #fff;
    font-weight: 600;
    border: 1px solid #07044D;
    background-color: #17538C;
    width: 200px;
    height: 40px;
    font-family: 'Kanit';

}


@media (max-width: 768px) {

.navbar{
    margin: 0;
}


    .navbar .btn {
        font-size: 12px;
       padding: 0;
        width: 110px;
        height: 30px;
    }
    
    .navbar-brand img {
        max-height: 30px;
    }

    .btn-primary{
        display: none;
    }

    .btn-outline-primary{
        display: none;
    }}


/* First section */

.hero-section {
    position: relative;
    padding: 20px 0;
    background-color: transparent; 
}

.hero-section .ellipse-background {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    z-index: -1;
}


.hero-section .svg-icon {
    align-self: flex-start;
    margin-left: -20%;
    width: 170px;
    margin-right: 80px;
    margin-top: -5%;
  
}
 



.hero-section h1 {
    font-size: 35px;
    font-weight: 700;
    font-family: 'Kanit';
    margin-bottom: 1.2rem;
    letter-spacing: 2px;

}

.hero-section p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2rem;

 
 
}

.text-italic {
    font-weight: bold;
    font-style: italic;
}


.hero-section .btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}
.btn-outline-primary-2 {
    position: relative;
    border-radius: 50px !important;
    color: #17558F;
    background-color: #fff;
    border: 1px solid #1B79E1;

    width: 200px;
    height: 40px;
    font-family: 'Kanit';
    transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}
.btn-outline-primary-2:hover {
    color: #fff;
    background-color: #17538C; 

}


.laptop-image {
    width: 80%;
    margin-right: -20%;
   animation:  float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}





@media (max-width: 768px) {

    .hero-section {
        padding: 20px 20px;
    }

    .hero-section h1 {
        font-size: 1.4rem;
        text-align: center;
      
    }
    
    .hero-section p {
        font-size:14px;
   
        text-align: left;
        margin-bottom:  10px;
    
   
    }

    .hero-section .btn {
        font-size: 0.875rem;
        padding: 5px 5px;
        margin-bottom: 5px;
    
    }

    .hero-section .ellipse-background {
        width: 100%;
        height: 50%;
        display: none;
    }

    .hero-section .svg-icon {
        display: none;
    }
    .laptop-image{
        width: 90%;
        margin-right: 0;
    }
}



/* SECCION SOLUCIONES */

.solutions-section {
    position: relative;
    padding: 60px 0px;
    background-color: transparent; 
}

.solutions-section .ellipse-background {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 80%;
    height: 100%;
    z-index: -1;
}

.solutions-section h2 {
    font-size: 35px;
    font-weight: 700;
    font-family: 'Kanit';
    text-align: right;


}

.solutions-section p {
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    font-family: 'Kanit';
    margin-left: 50px;

}

.solutions-section .text-italic {
    font-weight: bold;
    font-style: italic;
}

/* Estilos para las tarjetas */
.solution-card {
    position: relative;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-left: 80px;
    max-width: 800px;
    height: 200px;
    margin: auto;
}

.solution-card .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.icon-container {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}
.solution-card .card-body {
    padding-left: 10px; 
}

.solution-card .card-title {
    font-size: 21px;
    font-weight: 700;
    text-align: left;
    font-family: 'Kanit';
    margin-top: 30px;
}

.solution-card .card-text {
    font-size: 18px;
    font: weight 300px;;
    text-align: left;
    margin-left: 0;
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 20px 20px;
    }

    .solutions-section h2 {
        font-size: 25px;
        text-align: center;
    }
    
    .solutions-section p {
        font-size: 1rem;
        text-align: left;
        margin-left: 0;

    }

    .solutions-section .ellipse-background {
        width: 100%;
        height: 50%;
        display: none;
    }

    .solution-card {
        max-width: 100%;
        height: auto;
        padding-left: 0;
        margin-bottom: 50px;
    }

    .icon-container {
        position:absolute;
        top: -5%;
        
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 10px auto;
        width: 80px;
        height: 80px;
    }

    .solution-card .icon-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .solution-card .card-body {
        margin-left: 0;
        text-align: center;
    }
    .solution-card .card-title{
        font-size: 16px;
    }
    .solution-card .card-text{
        font-size: 14px;
    }
}

/* SECTION DESAFIOS */

.desafios-section {
    position: relative;
    color: white;
    padding: 20px 0;
}

.desafios-section .banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;

    
}

.desafios-section .banner img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    
}

.desafios-section .text-section {
    position: absolute;
    top: 33%;
    right: 0;
    transform: translateY(-50%);
    padding: 115px 70px;
    text-align: left;
    background: linear-gradient(90.17deg, rgba(0, 0, 0, 0) 0.14%, rgba(0, 0, 0, 0.40) 44.81%, rgba(0, 0, 0, 0.4) 99.84%);
    border-radius: 10px;
    margin-left: auto; 
    max-width: 50%;
    border-radius: 0;
}

.desafios-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Kanit';
}

.desafios-section h4 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Kanit';
    
}

.desafios-section li {
    font-size: 1rem;
    font-weight: 400;
    margin: 20px 0;
    width: 80%;
}

.btn-primary-3{
  color: #fff;
  text-decoration: underline;
    border-radius: 50px !important;
    background-color: #1C8EFF;
    font-family: 'Kanit';
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    height: 40px;
    animation:  float 10s ease-in-out infinite;
}

.btn-primary-3:hover{
background-color: white;
color: #1C8EFF;
font-weight: 600;
text-decoration: none;
}


@media (max-width: 768px) {
    .desafios-section .banner {
        height: 80vh; 
    }

    .desafios-section .banner img {
        width: auto; 
        height: 100%;
        object-fit: cover;
    }

    .desafios-section .text-section {
        position: absolute;
        top: 50%;
        left:0%;

        padding: 20px;
        text-align: left;
        background: none;
        border-radius: 0;
        max-width: 100%;
    }

    .desafios-section h2 {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .desafios-section h4 {
        font-size: 1.35rem;
        text-align: center;
    }
    
    .desafios-section li {
        font-size: 1rem;
        text-align: left;
        width: 100%;
    }

    .desafios-section .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        display: block;
        margin: 0 auto;
    }
}

@media (min-width:900px) and (max-width:1305px){
    .desafios-section .text-section {
        position: absolute;
        top: 33%;
        right: 0;
        transform: translateY(-50%);
        padding: 110px 50px;
        text-align: left;
        background: linear-gradient(90.17deg, rgba(0, 0, 0, 0) 0.14%, rgba(0, 0, 0, 0.40) 44.81%, rgba(0, 0, 0, 0.4) 99.84%);
        border-radius: 10px;
        margin-left: auto; 
        max-width: 50%;
        border-radius: 0;
    }
    

}
/* CONTACT SECTION */

.contacto-section {
    position: relative;
    padding: 80px 0;
    padding-bottom: 150px;
    background-color: #fff;
    color: #333;
    margin-top: -300px;
    overflow: hidden; 
}

.contacto-section .icono {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.contacto-section h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Kanit';
    margin-bottom: 20px;
}

.contacto-section p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contacto-section .btn-primary-4 {
    color: #fff;
   text-decoration: none;
    border-radius: 50px !important;
    background-color: #1C8EFF;
    font-family: 'Kanit';
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    height: 40px;
}
.contacto-section .btn-primary-4:hover{
    background-color: white;
    color: #1C8EFF;
    font-weight: 600;
    text-decoration: none;
    border: solid;
    }
    
.contacto-section a{
    color: #333;
    text-decoration: none;

}
.contacto-section .btn-primary-3:hover {
    background-color: white;
    color: #1C8EFF;
    font-weight: 600;
    text-decoration: none;
}

.contacto-section .footer-svg {
    position: absolute;
    
    left: 0;
    width: 100%;
    height:auto;
    z-index: 1;
}

.contacto-section .elipse-gradient {
    position: absolute;
   top: 200px;
    right: 0;
    width: 600px; 
    height: auto;
    z-index: 1;
}


/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .contacto-section {
        padding: 20px 20px;
        margin-top: 0;
    }

    .contacto-section .icono {
        width: 80px;
    }

    .contacto-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contacto-section p {
        font-size: 0.875rem;
        margin-bottom: 15px;
        padding: 0 10px;
        text-align: left;
    }

    .contacto-section .btn-primary-4 {
        width: 80%;
       
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contacto-section span{
        font-size: 12px;
    }
    .contacto-section .footer-svg {
        bottom: -20px;
    }

    .contacto-section .d-flex {
        flex-direction: column; 
        align-items: center;
    }
}


@media (max-height: 650px) {

    .desafios-section .banner {
        height: 130vh; 
    }

    .desafios-section .banner img {
        width: auto; 
        height: 100%;
        object-fit: cover;
    }
}