/*Inicio*/
/*Inicio*/
/*Inicio*/

.navbar {
    background-color: #f8f8fa;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    width: 100%;
    z-index: 1030;
}

.content-section {
    background-color: #f3f3f3;
    color: #FFFFFF;
    padding: 50px 15px;
    margin-top: 90px; /*Margen superior para que no moleste con el navbar*/
}

.content-text {
    padding: 20px;
    color: #0096a3;
}

.content-text h1 {
    font-size: 39px;
    color: #FFA500;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.buttons {
    margin-bottom: 20px;
}

.btn-try {
    background-color: #FFA500;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #ffd000;
}

.btn-contact {
    color: #00A4A7;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    background-color: #f3f3f3;
    color: #00A4A7;
    border: 2px solid #0096a3;
}

.btn-try:hover {
    background-color: #ffffff;
    color: #ff8800;
    border: 2px solid #ff8800;
}

.btn-contact:hover {
    border: 2px solid #0096a3;
    background-color: #0096a3;
    color: #FFFFFF;
}

/*Checks icon awesome*/
/*Checks icon awesome*/
/*Checks icon awesome*/

.fa-check {
    color: #007580; /* Cambia el color según tus necesidades */
    font-size: 15px; /* Ajusta el tamaño del ícono */
    margin-right: 8px; /* Espacio entre el ícono y el texto */
    vertical-align: middle; /* Alinea verticalmente con el texto */
  }



.details {
    font-size: 14px;
    display: flex;
}

.details div {
    margin-bottom: 10px;
}

.content-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .content-section {
        margin-top: 150px; /*Aumentar el margen superior para pantallas pequeñas */
    }

    .content-text {
        text-align: center;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .details {
        flex-direction: column;
        align-items: center;
    }
}



/* Portada */
/* Portada */
/* Portada */


.types-condo-container {
    background-color: #f3f3f3;
    padding: 20px;
}

.types-condo-title {
    font-size: 2em;
    font-weight: bold;
    color: #ffa000;
    margin-bottom: 10px;
}

.types-condo-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #0096a3;
}

.card {
    border: none;
    border-radius: 40px;
    text-align: center;
    background-color: #f3f3f3;
}

.card-img-top {
    border-radius: 30px;
    height: 250px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: auto;
    object-fit: cover;
    border: none;
}

.card-title {
    margin: 15px 0;
    font-size: 1.25em;
    font-weight: bold;
    color: #ffa000;
}

.card-text {
    font-size: 1em;
    line-height: 1.5;
    color: #0096a3;
}


/* Funciones */
/* Funciones */
/* Funciones */



.features-section {
    background-color: #f3f3f3;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #FFA500;
}

.features-section p {
    color: #0096a3;
    margin-bottom: 50px;
}

.icon-box {
    background-color: #f3f3f3;
    color: #006872;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.img-fluid.icon-rounded {
    max-width: 100%;
    height: 65px;

}

.features-section h4 {
    font-size: 1.3em;
    color: #ffa915;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
}

.features-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-section ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #0096a3;

}

.features-section .mr-2 {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .features-section h4, .features-section ul, .features-section ul li {
        text-align: left;
    }

    .icon-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-section .img-fluid.icon-rounded {
        margin-bottom: 20px;
    }
}



/* Seccion Video*/
/* Seccion Video*/


.video-section {
    background-color: #00A4A7;
    color: #ffffff;
    padding: 40px 20px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffa000;
}

.video-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: auto;
}

.video-button {
    background-color: #ffa000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid #ffa000;
}

.video-button:hover {
    background-color: #ffffff;
    color: #ff8800;
    border: 2px solid #ff8800;
}



@media (max-width: 768px) {
    .video-title {
        font-size: 2rem;
    }

    .video-subtitle {
        font-size: 1rem;
    }

    .video-container {
        width: 90%;
    }

    .video-button {
        width: auto;
        padding: 10px 20px;
    }
}



/* Seccion de integracion Soft */
 /* Seccion de integracion Soft */


 .integration-section {
    background-color: #f3f3f3;
    color: #000;
    padding: 40px 20px 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.integration-text h1 {
    color: #FFA500;
    font-size: 2.5rem;
    font-weight: bold;
}

.integration-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00A4A7;
}

.integration-text p {
    font-size: 1.2rem;
    color: #00A4A7;
}

.btn-integration-section {
    background-color: #00A4A7;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border-radius: 5px;
    padding-top: 10px;
    border: 2px solid #00A4A7;

}

.btn-integration-section:hover {
    border: 2px solid #0096a3;
    background-color: #f3f3f3;
    color: #00A4A7;
    transition: all 0.2s linear;
}



.integration-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

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

    .integration-text {
        text-align: center;
    }

    .integration-image {
        display: none;
    }
}


/* Seccion promocional */
/* Seccion promocional */


.promo-section {
    background-color: #00A4A7;
    color: #ffffff;
    padding: 40px 20px;


}

.promo-text h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFA500;
}

.promo-text p {
    font-size: 1rem;
    color: #ffffff;
}






.promo-text button {
    background-color: #ffa000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid #ffa000;
}

.promo-text button:hover {
    background-color: #ffffff;
    color: #ff8800;
    border: 2px solid #ff8800;
    transition: all 0.2s linear;
}





.promo-image {
    width: auto;
}

@media (min-width: 768px) {
    .promo-text h1 {
        font-size: 2.5rem;
    }

    .promo-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .promo-section {
        text-align: center;
    }

    .promo-text, .promo-image {
        text-align: center;
    }
}




