/* ===========================
   FONDO AMARILLO DEGRADADO
=========================== */

.renters-hero{
  width:100%;
  padding:20px 8%;
  background:linear-gradient(180deg,#ffde17 0%,#ebcb17 100%);
  box-sizing:border-box;
}

/* CONTENEDOR GENERAL */
.renters-hero-inner{
  max-width:1280px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  gap:50px;
}

/* ===========================
   TEXTO & INFORMACIÓN RENTERS
=========================== */

.renters-eyebrow{
  text-transform:uppercase;
  font-size:.9rem;
  color:#6e5400;
  letter-spacing:1px;
  margin-bottom:8px;
  font-family: 'Spartan', sans-serif;
}

.renters-title{
  font-size:2.5rem;
  font-weight:800;
  line-height:1.2;
  color:#1a1a1a;
  margin-bottom:16px;
  text-transform: uppercase;
  font-family: 'Spartan', sans-serif;
}

.renters-sub{
  font-size:1.05rem;
  color:#333;
  max-width:480px;
  margin-bottom:24px;
  font-family: 'Spartan', sans-serif;
}

/* LISTA DE BENEFICIOS */
.renters-features{
  list-style:none;
  margin:0 0 30px 0;
  padding:0;
  font-family: 'Spartan', sans-serif;
}

.renters-features li{
  margin-bottom:8px;
  padding-left:26px;
  font-size:1rem;
  color:#212121;
  position:relative;
}

.renters-features li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  font-weight:bold;
  color:#0b1b3a;
}

/* ===========================
   BOTONES
=========================== */

.renters-cta{ display:flex; gap:12px; flex-wrap:wrap; }

.renters-btn-primary{
    background:#111;
    color:#fff;
    padding:14px 28px;
    font-size:1rem;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
    font-family: 'Spartan', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    cursor: pointer;
}

.renters-btn-primary::before{
    margin-top: -5px;
}
.renters-btn-primary:hover{
    border:2px solid #111;
    color:#111;
    background: none;
    /* transform:translateY(-2px); */
}

.renters-btn-secondary{
    border:2px solid #111;
    color:#111;
    padding:14px 28px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}
.renters-btn-secondary:hover{background:#111;color:#ffde17;}

/* ===========================
  IMAGEN CASA
=========================== */

.renters-img-box img{
  width:430px;
  max-width:100%;
  border-radius:14px;
  display:block;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){
  .renters-hero-inner{
    flex-direction:column;
    text-align:center;
    gap: 20px;
  }
  .renters-img-box img{ margin-top:30px; }
  .renters-title{ font-size:1.8rem; }
}


#section-cotizar3{
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0,0,0,0.4);
    top: 0;
/*    display: flex;*/
    flex-flow: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}


#container-cotizar3{
    width: 60%;
    height: 70%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-content: flex-start;
}

#close-renters {
    width: 30px;
    height: 30px;
    background-color: #efefef;
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-left: 46%;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

#renters-cotizar {
    width: 50%;
    height: 90%;
    border-radius: 10px;
    position: relative;
    background: #f6f6f6;
    padding-bottom: 50px;
}

@media (max-width: 900px) {
    #renters-cotizar {
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }

    #close-renters {
        width: 40px !important;
        height: 40px !important;
        top: 40px !important;
        margin-left: 310px !important;
        font-size: 1.4em !important;
    }
}


/* ================================
   CAPSULA FIJA RENTERS INSURANCE
================================ */

.renters-pill {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #ffd600; /* amarillo llamativo */
    color: #000;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.renters-pill:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.pill-icon {
    background: #e53935;
    color: white;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50%;
}

.pill-text {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: 'Spartan',sans-serif;
  padding-top: 4px;
}

@media (max-width: 900px) {
    .renters-pill{
      transform: scale(.8);
      left: -18px;
    }
}

