/* ==================================================
   CHEESEMANIACS - CSS LIMPIO PRO
   Responsive + móvil real + SEO ready
================================================== */


/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#fff;
  color:#111;
  line-height:1.45;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.wrap{
  width:min(1200px,92%);
  margin:auto;
}


/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:#000;
}

.nav{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo img{
  width:auto;
  height:54px;
}

.menu{
  display:flex;
  gap:34px;
}

.menu a{
  color:#fff;
  font-size:18px;
  font-weight:700;
  transition:.2s;
}

.menu a:hover{
  color:#f6b800;
}


/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 30px;
  border-radius:999px;
  font-weight:800;
  transition:.25s;
}

.btn-yellow{
  background:#f6b800;
  color:#000;
}

.btn-yellow:hover{
  transform:translateY(-2px);
}

.btn-outline{
  color:#111;
  border:2px solid rgba(0,0,0,.95);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.btn-outline:hover{
  background:#fff;
  color:#111;
}

.btn-black{
  background:#000;
  color:#fff;
}


/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:10px solid #fff;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:72% center;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.38) 34%,
    rgba(0,0,0,.14) 62%,
    rgba(0,0,0,.04) 100%
  );
}

.hero-content{
 justify-content:flex-start;
  align-items:flex-start;
  padding-left:80px;
}

.hero-logo{
  width:500px;
  margin-left:22px;
  margin-bottom:-8px;
  position:relative;
  z-index:5;
}

.hero-box{
  max-width:600px;
  padding:34px;
  border-radius:26px;
  margin-left:0;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);

  border:1px solid rgba(255,255,255,.14);
}

.hero h1{
  color:#fff;
  font-size:96px;
  line-height:.92;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:20px;
  text-shadow:0 4px 18px rgba(0,0,0,.45);
}

.hero h1 span{
  color:#f6b800;
}

.hero p{
  color:#111;
  font-size:34px;
  max-width:760px;
  margin-bottom:34px;
  line-height:1.35;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* LAYOUT */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
}

section{
  padding:90px 0;
}

h2{
  font-size:58px;
  line-height:1;
  margin-bottom:18px;
}

.mini-title{
  color:#f6b800;
  font-weight:900;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:14px;
}

.dark{
  color:#000;
}


/* TRUST / VISIT */
.trust,
.visit{
  background:#fff;
}

.trust-image img,
.visit-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.trust-text,
.visit-text{
  padding:80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.trust-text p,
.visit-text p,
.showcase p,
.cta p{
  font-size:22px;
  color:#333;
  margin-bottom:18px;
}


/* SHOWCASE */
.showcase{
  background:#f7f4ee;
}

.center{
  text-align:center;
  margin-bottom:42px;
}

.showcase-image{
  width:min(1400px,94%);
  margin:auto;
  border-radius:26px;
  overflow:hidden;
}


/* BEST SELLERS */
.best{
  background:#fff;
}

.center-title{
  text-align:center;
  margin-bottom:42px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
}

.card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.card h3{
  padding:24px;
  font-size:28px;
}


/* CTA */
.cta{
  background:#f6b800;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}


/* FOOTER */
.footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:34px 20px;
}


/* INSTA */
.ig-link{
display:flex;
align-items:center;
justify-content:center;
width:52px;
height:52px;
border-radius:50%;
color:#fff;
transition:.25s;
}

.ig-link svg{
width:52px;
height:52px;
}

.ig-link:hover{
background:#f6b800;
color:#000;
transform:translateY(-2px);
}

/* FLOATING WHATSAPP */
.floating-wa{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999;
  background:#25D366;
  color:#fff;
  padding:16px 24px;
  border-radius:999px;
  font-weight:800;
}

/* COOKIE CONSENT */
.cookie-banner{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1100;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(0,0,0,.08);
  box-shadow:0 -12px 40px rgba(0,0,0,.12);
}
.cookie-banner.show{
  display:block;
}
.cookie-banner__inner{
  width:min(1200px,94%);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:18px 0;
}
.cookie-banner__text{
  max-width:820px;
  font-size:15px;
  color:#111;
}
.cookie-banner__text a{
  color:#000;
  font-weight:700;
}
.cookie-banner__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cookie-banner__btn{
  border-radius:999px;
  padding:12px 20px;
  font-weight:700;
  transition:.2s;
  cursor:pointer;
}
.cookie-banner__btn--primary{
  background:#f6b800;
  color:#000;
  border:none;
}
.cookie-banner__btn--secondary{
  background:#111;
  color:#fff;
  border:none;
}
.cookie-banner__btn--ghost{
  background:transparent;
  color:#111;
  border:1px solid rgba(0,0,0,.12);
}
.cookie-banner__panel{
  display:none;
  width:100%;
  margin-top:14px;
  padding:18px 24px;
  background:#fafafa;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
}
.cookie-banner__panel.show{
  display:block;
}
.cookie-banner__panel p{
  margin-bottom:14px;
  color:#333;
}
.cookie-banner__toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:12px;
  padding:16px 20px;
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
}
.cookie-banner__toggle label{
  font-size:15px;
  font-weight:700;
  color:#111;
}
.cookie-banner__toggle input{
  width:18px;
  height:18px;
}

/* MAP CARD */
.map-card{
  display:block;
  margin-top:22px;
  max-width:520px;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  transition:.25s;
}

.map-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(0,0,0,.12);
}

.map-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.map-card span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:18px 20px;

  font-size:18px;
  font-weight:800;
  color:#111;

  border-top:1px solid #eee;
}

/* ==================================================
   RESPONSIVE
================================================== */


/* LAPTOP */
@media (max-width:1100px){

.hero h1{
  font-size:74px;
}

.hero p{
  font-size:28px;
}

.cards{
  grid-template-columns:repeat(2,1fr);
}

.grid-2{
  grid-template-columns:1fr;
}

.trust-text,
.visit-text{
  padding:60px;
}

}


/* TABLET */
@media (max-width:900px){

.nav{
  height:84px;
}

.logo img{
  height:48px;
}

.menu{
  gap:18px;
}

.menu a{
  font-size:16px;
}

.btn{
  padding:14px 22px;
}

.hero{
  min-height:92vh;
}

.hero-content{
  padding-top:120px;
  padding-bottom:50px;
}

.hero-logo{
  width:220px;
}

.hero h1{
  font-size:62px;
}

.hero p{
  font-size:24px;
}

section{
  padding:70px 0;
}

}


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

.ig-link{
  width:38px;
  height:38px;
}  

.menu{
  display:none;
}

.nav{
  height:80px;
}

.logo img{
  height:42px !important;
  width:auto !important;
}

.header .btn{
  padding:13px 18px;
  font-size:15px;
}

.hero{
  min-height:100svh;
  padding-top:95px;
  padding-bottom:38px;
  border-bottom:8px solid #fff;
}

.hero-bg{
  object-position:80% center;
  transform:scale(1.04);
}

.hero-content{
  padding-top:0;
  padding-bottom:0;
}

.hero-logo{
  display:none !important;
}

.hero h1{
  font-size:52px;
  line-height:.95;
  letter-spacing:-1px;
  margin-bottom:16px;
}

.hero p{
  font-size:20px;
  line-height:1.38;
  margin-bottom:24px;
}

.hero-buttons{
  flex-direction:column;
  gap:14px;
}

.hero-buttons .btn{
  width:100%;
}

.hero-box{
  padding:24px;
  max-width:100%;
  background:rgba(255,255,255,.10);
}

.hero p{
  color:#fff;
}

.wrap{
  width:92%;
}

h2{
  font-size:42px;
}

.cards{
  grid-template-columns:1fr;
}

.trust-text,
.visit-text{
  padding:42px 22px;
}

.cta-box{
  flex-direction:column;
  align-items:flex-start;
}

.floating-wa{
  right:14px;
  bottom:14px;
  padding:14px 18px;
  font-size:16px;
}

}


/* SMALL MOBILE */
@media (max-width:480px){

.hero h1{
  font-size:44px;
}

.hero p{
  font-size:18px;
}

h2{
  font-size:34px;
}

section{
  padding:52px 0;
}

.header .btn{
  font-size:14px;
  padding:12px 16px;
}

} 

/* COOKIE BANNER RESPONSIVE */
@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
  }
  .cookie-banner__text {
    max-width: 100%;
    font-size: 14px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }
  .cookie-banner__btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
  }
  .cookie-banner__panel {
    padding: 14px 18px;
  }
  .cookie-banner__panel p {
    font-size: 14px;
  }
  .cookie-banner__toggle {
    padding: 12px 16px;
  }
  .cookie-banner__toggle label {
    font-size: 14px;
  }
}