@import url('https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@400;500;600;700;800&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");
/* FONT: Inter*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol {
    list-style: none;
}

.subtitle {
    font-family: Jost;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 600;
    line-height: 46.24px;
    text-align: left;
}

.subtitle--white {
    color: #ffffff;
    font-family: Inter;
    font-size: 28px;
    font-weight: 900;
    line-height: 33.89px;
    text-align: center;

}

/*SECTION 1: SOMOS SUSAY */
.hero {
    background: url("../images/58.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 3em 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 7em 0 4em 0;
    position: relative;
    z-index: 2;
}

.hero__content--text {
    gap: 0;
}

.hero__title {
    color: #ffffff;
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    padding: .2em;
    display: inline-block;
    position: relative;
}

.hero__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(120px, 100%, 43%);
    height: 2px;
    transition: width 0.3s ease;
    background-color: #75CB80;
}

.hero__paragraph {
    color: #FFFFFF;
    max-width: 52ch;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-size: "Kanit", sans-serif;
    line-height: 1.5;
}

.hero__subtitle {
    font-family: Inter;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 900;
    line-height: 24.2px;
    text-align: left;
    color: #E3FAE5;
}


/*SECTION 2 - BENEFICIOS DE SER EMPRESA CIUDADANA*/
.section-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    align-items: center;
    padding: clamp(2em, 5vw, 5em) 0;
}

.wrapper-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4.5em;
    justify-content: center;
    align-items: center;
}


.cardBeneficios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
    border-style: solid;
    border-width: 15px 2px 2px;
    width: min(100%, 395px);
    padding: 2em 0;
}

/*ESTILOS PERSONALIZADOS PARA CADA CARD*/
.cardBeneficios:first-child {
    border-color: #F2BF7A;
}

.cardBeneficios:nth-child(2) {
    border-color: #B6D6EF;
}

.cardBeneficios:nth-child(3) {
    border-color: #AD89B9;
}


.cardBeneficios__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cardBeneficios__icon--orange path {
    fill: #F2BF7A;
}

.cardBeneficios__icon--blue path {
    fill: #B6D6EF;
}

.cardBeneficios__icon--purple path {
    fill: #AD89B9;
}

.bg-orange,
.bg-blue,
.bg-purple {
    width: 100%;
    height: 100%;
}

.bg-blue {
    background: #B6D6EF;
}

.bg-purple {
    background: #AD89B9;
}

.bg-orange {
    background: #F2BF7A;
}


.cardBeneficios__title {
    font-family: Jost;
    font-size: 24px;
    font-weight: 900;
    line-height: 34.68px;
    text-align: center;
    color: #606060;
    width: 10ch;
}

.cardBeneficios__title--span {
    font-family: Jost;
    font-size: 24px;
    font-weight: 500;
    line-height: 34.68px;
    text-align: center;
    color: #AAAAAA;
}

.cardBeneficios__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    padding: 1em 0;
    font-family: Jost;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.23px;
}

.cardBeneficios__subtitle {
    padding-left: 2em;
}

.cardBeneficios__list {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 0 30px;
    text-align: justify;
}

.cardBeneficios li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1em;
    font-family: Jost;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.23px;
}

.cardBeneficios__footer {
    width: 100%;
    text-align: center;
}

.cardBeneficios__cta {
    color: #ffffff;
    border: none;
    border-radius: 5px;
    width: min(100%, 300px);
    padding: .5em 1em;
}

.cardBeneficios__cta--orange {
    background-color: #F2BF7A;
}

.cardBeneficios__cta--blue {
    background-color: #B6D6EF;
}

.cardBeneficios__cta--violet {
    background-color: #AD89B9;
}







/*SECTION 3*/

.section-3 {
    font-family: Josh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding: 2em 0;
    background: url('../images/empresas-bg-loqueofrece.png') no-repeat;
    object-fit: cover;
    background-size: cover;
    object-position: center;
    padding: 3em 0;
}

.section-3__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2em;
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 2em 0;
}

.section-3 .subtitle {
    text-align: center;
}

.cardPlataforma {
    background: #ffffff;
    padding: 1em;
    width: min(100%, 382px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
    border-radius: 5px;
}

.cardPlataforma__content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 1em;
    height: 100%;
}

@media(min-width: 992px) {
    .cardPlataforma {
        flex-direction: column;
    }

    .wrapper-cards {
        padding: 3.5em 0 0 0;
    }

    .cardPlataforma__content-text {
        gap: 0;
        text-align: center;
    }
}

.cardPlataforma__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 26.04px;
}

.cardPlataforma__paragraph {
    font-size: 14px;
    line-height: 15.73px;
}

/*SECTION 5*/

.section-5 .subtitle {
    text-align: center;
}

.section-5 .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    object-position: center;
}

.carousel {
    width: min(90%, 827px);
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    border: 1.5px solid #E0E0E0
}

.carousel .carousel-indicators {
    position: absolute;
    bottom: -50px;
}

.carousel-indicators .active {
    background: #9FCCA5;
}


.carousel .carousel-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 2em 1em;
}

.carousel .carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/empresas-testimonios-comillatop-mobile.svg") no-repeat;
    top: 20px;
    left: 20px;
}

.carousel .carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/empresas-testimonios-comillabottom-mobile.svg") no-repeat;
    top: 90%;
    left: 90%;
}

@media(min-width: 992px) {
    .carousel .carousel-item::before {
        background: url("../images/empresas-testimonios-comillabottom-desktop.svg") no-repeat;
        top: 80%;
        left: 90%;
    }

    .carousel .carousel-item::after {
        background: url("../images/empresas-testimonios-comillatop-desktop.svg") no-repeat;
        left: 35px;
    }
}

.carousel__title {
    color: #515151;
    font-family: Inter;
    font-size: 20px;
    font-weight: 800;
    line-height: 19.49px;
}

.carousel__paragraph {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    width: min(80%, 55ch);
    margin: 0 auto;
    padding: 1em 0 0 0;
    color: #717171;
}

.carousel__image {
    width: min(70%, 250px);
    margin: 0 auto;
    padding: 1em;
}

.carousel__indicator {
    background: #E0E0E0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    position: absolute;
    background: #9FCCA5;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    display: none;
}


.carousel-control-next-icon {
    right: -35px;
}

.carousel-control-prev-icon {
    left: -35px;
}

@media(min-width: 992px) {
    .carousel-control-next-icon {
        right: -15px;
    }

    .carousel-control-prev-icon {
        left: -15px;
    }

    .carousel .carousel-control-prev,
    .carousel .carousel-control-next {
        display: flex;
    }

    .carousel .carousel-indicators {
        display: none;
    }
}

/*SECTION 6*/
.section-6 {
    padding: 3em 0;
    background-position: center;
    position: relative;
    color: #ffffff;
    width: 100%;
    object-fit: cover;
    background: url("../images/15.png") no-repeat;
    background-size: cover;
}

.section-6 .container {
    z-index: 1;
}

.section-6 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9FCCA5EB;
}

.section-6 .subtitle {
    padding: 1em 0;
    z-index: 1;
    position: relative;
}

.section-6__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 1em;
    padding: 5em 0;
    position: relative;
}

.cardLogros {
    display: flex;
    padding: 1em;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    position: relative;
    
    gap: 1em;
    width: min(100%, 190px);
}

.cardLogros__number {
    font-family: Inter;
    font-size: 24px;
    font-weight: 900;
    line-height: 29.05px;
    text-align: center;
    width: 100%;
    margin: 0;
}

.cardLogros__content-image {
    position: relative;
    margin: 0 auto;
}

.cardLogros__content-image svg {
    width: min(100%, 87px);
}

.cardLogros__paragraph {
    width: 100%;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: center;
}