@charset "utf-8";

/* =========================================================
   FONT
========================================================= */

@font-face {
  font-family:'Fredoka One';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url(https://fonts.gstatic.com/s/fredokaone/v8/k3kUo8kEI-tA1RRcTZGmTlHGCac.woff2) format('woff2');
}



/* =========================================================
   RESET / BASE
========================================================= */

*{
  box-sizing:border-box;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

body{
  margin:0;
  background:#b9bfb6;
  font-family:'Fredoka One', system-ui, sans-serif;
}

.clearfloat{ clear:both; }
.clearfloat-10{ clear:both; height:10px; }

.responsive-img{
  width:100%;
  height:auto;
  display:block;
  margin:auto;
}



/* =========================================================
   CONTAINER / LAYOUT
========================================================= */

.container{
  width:100%;
  max-width:1280px;
  margin:auto;
  background:#6b4d5e;

}
.home-header{
  border-top:4px solid #ed2e3e;
}
main{
  width:100%;
  float:left;
}



/* =========================================================
   BRAND HEADER
========================================================= */

.home-header{
  width:100%;
  float:left;
  text-align:center;
  letter-spacing:.03em;
  color:#fff;
  background:#6b4d5e;

    
}
.brand{
  margin:0;
  font-size:0rem;
  letter-spacing:.03em;
 color:#ffb347;                 /* ← naranja */
  text-shadow:0 2px 6px rgba(0,0,0,.35);  /* ← profundidad */
}


/* =========================================================
   TITLES HIERARCHY
========================================================= */

.home > h1{
  width:100%;
 margin:0 auto;
  text-align:center;
  font-size:2.1rem;
  font-weight:400;
  color:#F5EFFF;
background:#6b4d5e;
    padding-top: 8px;
  
}

.home h2{
  font-size:1.35rem;
  letter-spacing:.05em;
  color:#fff;
  text-align:left;
  margin:22px 0 8px;
    padding-left: 10px;
}

.home h2 a{
  color:#fff;
  text-decoration:none;
}

.home h2 a:hover{
  color:#FFD38A;
}

.home h3{
  font-size:1.2rem;
  color:#FFD38A;
  font-weight:400;
  margin:1.4rem 0 .6rem 0;
}

/* =========================================================
   HOME HUB (CATEGORIES MOBILE/TABLET)
========================================================= */

.home-cats{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  padding:18px;
  float:left;
  width:100%;
}

.cat{
  background:#6b4d5e;
  border-radius:14px;
  padding:10px;
  text-align:center;
}

.cat img{
  width:100%;
  border:4px solid #fc9b38;
  border-radius:10px;
}

.cat h2{
  font-size:1rem;
  margin-top:6px;
}



/* =========================================================
   MEGA GRID (DESKTOP)
========================================================= */

.home-mega{
  width:100%;
  float:left;
  background:#6b4d5e;
  padding:20px 10px;
  box-sizing:border-box;
}

.home-mega::after{
  content:"";
  display:block;
  clear:both;
}

.home-mega .col1,
.home-mega .col2,
.home-mega .col3,
.home-mega .col4,
.home-mega .col5{
  width:18%;
  margin:0 1%;
  float:left;
  text-align:center;
}

/* ===== LISTA BENEFICIOS ===== */

.home-text ul{
  max-width:980px;
  margin:18px auto 22px;
  padding:0 2%;
  list-style:none;
  font-family:system-ui, Arial, sans-serif;
}

.home-text ul li{
  position:relative;
  margin:10px 0;
  padding-left:26px;
  color:#F5EFFF;
  font-size:1rem;
  line-height:1.55;
}

/* bullet custom naranja */

.home-text ul li::before{
  content:"●";
  position:absolute;
  left:0;
  top:0;
  color:#fc9b38;
  font-size:.9rem;
  line-height:1.6;
}


/* =========================================================
   MINIATURES
========================================================= */

/* =========================================================
   HOVER MINIATURAS
========================================================= */

.minis-menu{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  position:relative;
  margin-bottom:18px;
  border-radius:10px;                 /* ← recorte real */
  transition:transform .25s ease,
             box-shadow .25s ease;
}

.minis-menu img{
  width:100%;
  height:100%;
  object-fit:cover;
  border:.2em solid #fc9b38;
  border-radius:10px;
  transition:transform .25s ease;
}

.minis-menu:hover{
  transform:scale(1.05);
  box-shadow:0 10px 28px rgba(0,0,0,.35),
             0 0 18px rgba(252,155,56,.55);
}

.minis-menu:hover img{
  transform:scale(1.08);
}


.mobile-break{
  display:none;
}    
/* =========================================================
   TEXT BLOCK
========================================================= */

.home-text{
  width:100%;
  float:left;
  background:#6b4d5e;
  padding:20px 0 30px;
}

.textoFluo{
  max-width:980px;
  margin:auto;
  padding:0 2%;
  font-family:system-ui, Arial, sans-serif;
  line-height:1.6;
  font-size:1rem;
}

.textoFluo p{
  color:#F5EFFF;
  text-align:justify;
}

.textoFluo p a{
  color:#FFD38A;
}

.textoFluo p a:hover{
  color:#fff;
}

.textoFluo blockquote{
  border-left:4px solid #fc9b38;
  padding-left:1rem;
  margin:1.4rem 0;
  color:#F5EFFF;
}

.textoFluo blockquote p{
  margin:0 0 .4rem 0;
  line-height:1.5;
}

.textoFluo blockquote cite{
  display:block;
  font-size:.9rem;
  color:#FFD38A;
  font-style:normal;
}


.faq-section{
  margin:2rem 0;
}

.faq-list{
  margin:0;
}

.faq-list dt{
  color:#ffffff;
  font-weight:400;
  margin-top:1rem;
}

.faq-list dd{
  color:#F5EFFF;
  margin:0.4rem 0 0.8rem 1rem;
  line-height:1.5;
}

/* =========================================================
   FOOTER
========================================================= */

footer{
  width:100%;
  margin-top:2%;
}

.pie_creditos{
  width:100%;
  background:#6b4d5e;
  padding:1%;
}

.pie_creditos p,
.pie_creditos a{
  color:#c0b1b1;
  text-decoration:none;
}





  .home-header,
  .home > h1,
  .home-cats,
  .home-mega,
  .home-text{
    width:70%;
    float:none;          /* ← quita alineación izquierda */
    margin-left:auto;    /* ← centra */
    margin-right:auto;   /* ← centra */
            border-left:4px solid #ed2e3e;
  border-right:4px solid #ed2e3e;
       
  }

.home-cats a{
  text-decoration:none;
  color:inherit;
}



/* =========================================================
   VISIBILITY HUB / MEGA
========================================================= */


/* ===== DESKTOP (default) ===== */

.home-cats{ display:none; }
.home-mega{ display:block; }


/* ===== TABLET + MOBILE ===== */

@media (max-width:900px){

  .home-cats{ display:grid;
        background:#6b4d5e;}
    
      .cat{
    background:#6b4d5e;
  }
    
  .home-mega{ display:none; }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px){

  .home-cats{
    grid-template-columns:repeat(3,1fr);
  }

}



/* =========================================================
   MOBILE
========================================================= */
@media (max-width:500px){

  /* romper limitación 70% */
  .home-header,
  .home > h1,
  .home-cats,
  .home-mega,
  .home-text{
    width:100%;
    margin:0;
    border-left:4px solid #ed2e3e;
    border-right:4px solid #ed2e3e;
  }

  body{
    background:#6b4d5e;
  }

  .home-header{ font-size:1.6rem; }

  .home > h1{
    font-size:1.45rem;
    margin:0;
    text-align:center;  

    padding:8px 10px;
  }

  .home-cats{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:10px;
  }

  .cat{
    background:none;
    padding:6px;
    border-radius:0;
  }

  .cat img{
    aspect-ratio:1/1;
    border:3px solid #fc9b38;
  }

  .cat h2{
    font-size:1.2rem;
    line-height:1.1;
    margin-top:4px;
    text-align:center;
  }
    

    
  .brand{
    font-size:1.05rem;
    line-height:1.15;
  }
    

    
  .mobile-break{
    display:block;
  }
    
    

  .cat{
    padding:0;              /* ← clave */
    background:#6b4d5e;
    border-radius:0;
  }

  .cat img{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
    display:block;
  }
}
