/*====================================
        NUESTRA ESENCIA
====================================*/

.essence-section{

    padding:110px 0;

    background:#F8F4EE;

    position:relative;

}

/*==============================*/

.section-header{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

    margin-bottom:80px;

}

.section-header span{

    display:block;

    color:#B62B63;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.9rem;

    font-weight:600;

    text-align:center;

    margin-bottom:10px;

}

.section-header h2{

    color:#24304D;

    font-size:3rem;

    margin:0;

    text-align:center;

}

/*==============================*/

.essence-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*==============================*/

.essence-card{

    background:#fff;

    border-radius:25px;

    padding:70px 35px 40px;

    position:relative;

    text-align:center;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

/* Flor decorativa */

.essence-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    top:-35px;

    right:-35px;

    background:url("../img/flores_izquierda.png") no-repeat center;

    background-size:contain;

    opacity:.08;

    transform:rotate(20deg);

}

.essence-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

/*==============================*/

.icon-circle{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#B62B63;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin:auto;

    margin-top:-105px;

    margin-bottom:25px;

    border:6px solid #F8F4EE;

}

/*==============================*/

.essence-card h3{

    color:#24304D;

    margin-bottom:20px;

    font-size:1.8rem;

}

.essence-card p{

    color:#666;

    line-height:1.9;

}

.essence-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.essence-card li{

    padding:10px 0;

    color:#555;

    border-bottom:1px solid rgba(0,0,0,.08);

}

.essence-card li:last-child{

    border:none;

}

/*==============================*/

@media(max-width:991px){

.essence-grid{

    grid-template-columns:1fr;

}

.section-header h2{

    font-size:2.3rem;

}

}