/* =========================
   HERO
   ========================= */

.faq-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    top: 47px;
}

.faq-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.faq-hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: 'Cardo', serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

/* =========================
   SECCION FAQ
   ========================= */

.faq-section{
    display:flex;
    justify-content:center;
    margin-top:120px;
    margin-bottom:120px;
}

/* Container principal */
.faq-container{
    width:1114px;
    background:#F5FAFF;
    padding:80px 90px;
}

/* =========================
   ITEMS
   ========================= */

.faq-item{
    margin-bottom:70px;
}

.faq-item:last-child{
    margin-bottom:0;
}

/* TITULOS */
.faq-item h3{
    font-family:'Cardo', serif;
    font-size:42px;
    font-weight:700;
    color:#2B5E8F;

    margin-bottom:36px;

    position:relative;
    padding-left:30px;
}

/* Bullet azul */
.faq-item h3::before{
    content:"•";
    position:absolute;
    left:0;
    top:-4px;

    font-size:36px;
    color:#2B5E8F;
}

/* TEXTO */
.faq-item p{
    font-family:'Montserrat', sans-serif;
    font-size:36px;
    font-weight:400;
    color:#4D4C4C;

    line-height:1.5;
}

/* =========================
   MOBILE (<=700px)
   Container max 700 + tamaños móviles
   ========================= */
@media (max-width: 700px){

  .faq-hero{
    top: 0;
    height: 268px;
  }

  .faq-hero__title{
    font-size: 36px;
    padding: 0 16px;
    width: 100%;
  }

  .faq-section{
    margin-top: 36px;
    margin-bottom: 36px;
    padding: 0 16px;
  }

  .faq-container{
    width: 100%;
    max-width: 700px;
    padding: 22px 18px;
  }

  .faq-item{
    margin-bottom: 22px;
  }

  .faq-item h3{
    font-size: 22px;
    margin-bottom: 10px;
    padding-left: 18px;
    line-height: 1.25;
  }

  .faq-item h3::before{
    font-size: 20px;
    top: 0;
  }

  .faq-item p{
    font-size: 16px;
    line-height: 1.6;
  }
}