*{
    margin: 0px;
    padding: 0px;
}

body{
    background-color: #f5f5f5;
}

.c-navbar{
    background-color: #93d500 !important;
}


.nav-link,.navbar-nav .nav-link.active{
    color: #fff;
}

.nav-link:hover,.navbar-nav .nav-link.active:hover{
    color: #000;
}

.banner{
    padding-left: 0px !important;
    padding-right: 0px !important;
    width: 100%;
}

.carousel-caption {
    bottom: auto;
    top: 25%;
    text-align: start;
}

.carousel-caption>h2,.carousel-caption>p{
    width: 50%;
}

.carousel-caption>h2{
    font-weight: 700;
    font-size: 5vw;
    color: #93d500;
}

.carousel-caption>p{
    margin-bottom: 0px !important;
}

.car-btn {
    background: #93d500;
    height: 35px;
    width: 40%;
    margin-top: 15px;
    border: 3px solid #93d500;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
}

.car-btn:hover {
    background: #fff;
    height: 35px;
    width: 40%;
    margin-top: 15px;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
}

.c-descripcion{
    display: flex;
}

.d-conte{
    display: flex;
    justify-content: center;
    align-items: center;
}

.descripcion{
    width: 90%;
    padding: 50px 5%;
}

.descripcion>p{
    margin-bottom: 0px !important;
}

.desc-img{
    width: 80%;
    margin: 50px 0px;
}

.tarjetas{
    padding-top: 10px;
    padding-bottom: 10px;
}

.c-tarjeta{
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.t-head>img{
    width: 100%;
    border-radius: 5px;
}

.t-content{
    flex-grow: 1;
    padding: 0px 15px;
}

.t-content>h3{
    font-size: 1.2rem;
}

.truncated-text {
    height: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: height 0.3s ease-in-out; /* Asegura que la transición se aplique */
}

.truncated-text::after {
    content: '\25BC'; /* Código Unicode para una flecha hacia abajo */
    font-size: 1em;
    vertical-align: middle;
    margin-left: 5px;
    cursor: pointer;
}

.expanded {
    height: auto;
    transition: height 0.3s ease-in-out;
}

.expand-icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    cursor: pointer;
    
}

.icon-activo {
    transform: rotate(180deg);
}

.t-footer{
    margin-top: auto;
}

.btn-tarjeta{
    display: block;
    width: 80%;
    margin: 0px 10%;
    padding: 5px 10px;
    background: #93d500;
    color: #fff;
    text-align: center;
    border: 2px solid #93d500;
    border-radius: 5px;
    text-decoration: none;
}

.btn-tarjeta:hover{
    background: #fff;
    color: #93d500;
}

.c-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #1d1d1b;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.c-footer>p{
    margin-bottom: 0px !important;
}

@media (max-width: 576px) {
    .carousel-caption {
        top: 5%;
    }
    .carousel-caption>h2,.carousel-caption>p{
        width: 62%;
    }
    .carousel-caption>p{
        font-size: 12px;
    }
    .car-img{
        opacity: 0.7;
    }
}
@media (max-width: 767px) {
    .descripcion{
        padding-bottom: 0px;
    }
}