:root{
  --blue:#4778b3;
  --blue-dark:#244f86;
  --yellow:#ffd200;
  --yellow-dark:#e4bb00;
  --dark:#16191d;
  --black:#111820;
  --text:#26313d;
  --muted:#667085;
  --light:#f5f8fc;
  --border:#e7edf4;
  --white:#ffffff;
}

/* RESET GENERAL */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Manrope",sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
}

p{
  margin-top:0;
}

::selection{
  background:var(--yellow);
  color:#111;
}

/* TOPBAR */

.topbar{
  background:var(--dark);
  color:#fff;
  font-size:13px;
  padding:8px 0;
}

.topbar a{
  color:#fff;
  margin-left:18px;
  font-weight:700;
  transition:.25s;
}

.topbar a:hover{
  color:var(--yellow);
}

/* NAVBAR */

.navbar{
  background:#fff;
  border-bottom:1px solid #e9edf3;
  padding:14px 0;
  z-index:50;
}

.navbar-brand{
  display:flex;
  align-items:center;
}

.navbar-brand img{
  height:48px;
  width:auto;
}

.nav-link{
  font-weight:800;
  color:var(--text);
  margin:0 8px;
  transition:.25s;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active{
  color:var(--blue);
}

.navbar-toggler{
  border:0;
  box-shadow:none !important;
}

.navbar-toggler:focus{
  box-shadow:none;
}

/* BOTONES */

.btn-fixum,
.btn-yellow{
  min-height:48px;
  padding:12px 24px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:none;
  transition:.25s;
  line-height:1;
}

.btn-fixum{
  background:var(--blue);
  color:#fff;
}

.btn-fixum:hover{
  background:var(--blue-dark);
  color:#fff;
  transform:translateY(-2px);
}

.btn-yellow{
  background:var(--yellow);
  color:#111;
}

.btn-yellow:hover{
  background:var(--yellow-dark);
  color:#111;
  transform:translateY(-2px);
}

/* HERO GENERAL */

.hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38)),
  url("/assets/img/bg.jpg") center/cover no-repeat;
}

.hero2{
  min-height:72vh;
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38)),
  url("/assets/img/3.jpg") center/cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at 20% 30%, rgba(255,210,0,.16), transparent 28%),
  radial-gradient(circle at 80% 20%, rgba(71,120,179,.22), transparent 26%);
  pointer-events:none;
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:clamp(46px,7vw,92px);
  font-weight:900;
  line-height:.92;
  letter-spacing:-4px;
  text-transform:uppercase;
  margin-bottom:26px;
  max-width:1050px;
}

.hero h1 span{
  color:var(--yellow);
}

.hero p{
  max-width:760px;
  color:rgba(255,255,255,.88);
  font-size:20px;
  line-height:1.8;
  margin-bottom:0;
}

.hero-badge{
  display:inline-block;
  border:1px solid rgba(255,255,255,.6);
  padding:9px 16px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:24px;
  color:#fff;
  backdrop-filter:blur(8px);
}

/* SECCIONES */

.section{
  padding:100px 0;
}

.bg-light{
  background:var(--light) !important;
}

.eyebrow{
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:14px;
}

.section-title{
  font-size:clamp(36px,5vw,68px);
  font-weight:900;
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:24px;
  color:var(--text);
}

.section-text{
  color:var(--muted);
  font-size:18px;
  line-height:1.9;
}

.text-center .section-text{
  max-width:780px;
}

/* PORTAL CARDS - INDEX */

.portal-card{
  min-height:360px;
  height:100%;
  display:flex;
  align-items:flex-end;
  position:relative;
  overflow:hidden;
  padding:36px;
  color:#fff;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transition:.35s;
}

.portal-clinica{
  background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82)),
  url("img/1.jpg");
}

.portal-productos{
  background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82)),
  url("img/2.jpg");
}

.portal-empresa{
  background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82)),
  url("img/3.jpg");
}

.portal-contacto{
  background-image:
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82)),
  url("img/4.jpg");
}

.portal-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(36,79,134,.55), rgba(0,0,0,.2));
  opacity:.35;
  transition:.35s;
}

.portal-card::after{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.22);
  opacity:0;
  transform:scale(.96);
  transition:.35s;
}

.portal-card > div{
  position:relative;
  z-index:2;
  max-width:520px;
}

.portal-card h3{
  font-size:38px;
  font-weight:900;
  letter-spacing:-1.5px;
  margin-bottom:12px;
  color:#fff;
}

.portal-card p{
  color:rgba(255,255,255,.84);
  font-size:17px;
  line-height:1.7;
  margin-bottom:24px;
}

.portal-arrow{
  width:54px;
  height:54px;
  background:var(--yellow);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  transition:.3s;
}

.portal-card:hover{
  color:#fff;
  transform:translateY(-6px);
  box-shadow:0 28px 80px rgba(17,24,32,.18);
}

.portal-card:hover::before{
  opacity:.65;
}

.portal-card:hover::after{
  opacity:1;
  transform:scale(1);
}

.portal-card:hover .portal-arrow{
  background:#fff;
  transform:translateX(8px);
}
/* STATEMENT - INDEX */

.statement{
  padding:110px 0;
  background:#111820;
  color:#fff;
  text-align:center;
}

.statement h2{
  max-width:1100px;
  margin:0 auto 28px;
  font-size:clamp(38px,6vw,82px);
  font-weight:900;
  line-height:.98;
  letter-spacing:-4px;
  text-transform:uppercase;
}

.statement h2 span{
  color:var(--yellow);
}

.statement p{
  max-width:820px;
  margin:0 auto;
  color:rgba(255,255,255,.76);
  font-size:20px;
  line-height:1.8;
}

/* SPLIT IMAGE - EMPRESA */

.split-image{
  min-height:620px;
  background:
  linear-gradient(rgba(36,79,134,.15), rgba(36,79,134,.2)),
  url("/assets/img/bg.jpg") center/cover no-repeat;
}

/* VALUE CARDS - EMPRESA */

.value-card{
  background:#fff;
  border:1px solid var(--border);
  padding:42px 34px;
  height:100%;
  transition:.3s;
}

.value-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(22,25,29,.08);
}

.value-icon{
  width:72px;
  height:72px;
  background:var(--light);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:28px;
}

.value-card h4{
  font-size:24px;
  font-weight:900;
  margin-bottom:16px;
  color:var(--text);
}

.value-card p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

/* TIMELINE - EMPRESA */

.timeline{
  position:relative;
  padding-left:42px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:9px;
  top:0;
  bottom:0;
  width:2px;
  background:#dce4ee;
}

.timeline-item{
  position:relative;
  margin-bottom:44px;
}

.timeline-item:last-child{
  margin-bottom:0;
}

.timeline-dot{
  width:20px;
  height:20px;
  background:var(--yellow);
  border-radius:50%;
  position:absolute;
  left:-42px;
  top:6px;
  box-shadow:0 0 0 8px rgba(255,210,0,.18);
}

.timeline h5{
  font-size:26px;
  font-weight:900;
  margin-bottom:10px;
  color:var(--text);
}

.timeline p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

/* STATS - EMPRESA */

.stats{
  background:#111820;
  color:#fff;
  padding:70px 0;
}

.stat-item{
  text-align:center;
  padding:20px;
}

.stat-item strong{
  display:block;
  font-size:56px;
  font-weight:900;
  line-height:1;
  margin-bottom:10px;
  color:#fff;
}

.stat-item span{
  color:rgba(255,255,255,.7);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:800;
}

/* CONTACT CARDS - CONTACTO */

.contact-card{
  background:#fff;
  border:1px solid var(--border);
  padding:42px 34px;
  height:100%;
  transition:.3s;
}

.contact-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(22,25,29,.08);
}

.contact-icon{
  width:72px;
  height:72px;
  background:var(--light);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:26px;
}

.contact-card h4{
  font-size:24px;
  font-weight:900;
  margin-bottom:14px;
  color:var(--text);
}

.contact-card p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

.contact-card a{
  color:var(--muted);
  font-weight:800;
  transition:.25s;
}

.contact-card a:hover{
  color:var(--blue);
}

/* FORMULARIO - CONTACTO */

.contact-form{
  background:#fff;
  border:1px solid var(--border);
  padding:52px;
  height:100%;
}

.form-control,
.form-select{
  border-radius:0;
  border:1px solid #dbe3ec;
  min-height:58px;
  padding:14px 18px;
  font-weight:600;
  color:var(--text);
  box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--blue);
}

.form-control::placeholder{
  color:#8b98a8;
}

textarea.form-control{
  min-height:160px;
  resize:none;
}

/* INFO BOX - CONTACTO */

.info-box{
  background:#111820;
  color:#fff;
  padding:52px;
  height:100%;
}

.info-box h3{
  font-size:38px;
  font-weight:900;
  line-height:1;
  margin-bottom:26px;
  color:#fff;
}

.info-box p{
  color:rgba(255,255,255,.75);
  line-height:1.9;
  margin-bottom:34px;
}

.info-item{
  display:flex;
  gap:18px;
  margin-bottom:26px;
  align-items:flex-start;
}

.info-item:last-child{
  margin-bottom:0;
}

.info-item-icon{
  width:52px;
  height:52px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

.info-item strong{
  display:block;
  font-size:15px;
  font-weight:900;
  margin-bottom:4px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#fff;
}

.info-item span{
  display:block;
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

/* CTA */

.cta{
  min-height:480px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
  linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.32)),
  url("/assets/img/bg2.jpg") center/cover no-repeat;
}

.cta h2{
  font-size:clamp(38px,5vw,72px);
  font-weight:900;
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:24px;
  color:#fff;
  text-transform:uppercase;
}

.cta p{
  max-width:760px;
  color:rgba(255,255,255,.84);
  font-size:19px;
  line-height:1.8;
  margin-bottom:34px;
}

.footer-pro{
  background:#151719;
  color:#cfd5dd;
  padding:58px 0 0;
}

.footer-main{
  padding-bottom:42px;
}

.footer-logo{
  max-height:46px;
  width:auto;
  filter:brightness(0) invert(1);
  margin-bottom:22px;
}

.footer-text{
  color:#aeb7c2;
  line-height:1.65;
  max-width:340px;
  margin-bottom:22px;
  font-size:15px;
}

.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-social a{
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.footer-social a:hover{
  background:var(--yellow);
  border-color:var(--yellow);
  color:#111;
  transform:translateY(-3px);
}

.footer-pro h5{
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.1px;
  margin-bottom:18px;
}

.footer-pro ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-pro ul li{
  margin-bottom:10px;
}

.footer-pro ul a{
  color:#aeb7c2;
  font-size:14px;
  font-weight:700;
  transition:.2s;
}

.footer-pro ul a:hover{
  color:#fff;
  padding-left:4px;
}

.footer-contact-box{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  padding:24px;
}

.footer-contact{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
  color:#aeb7c2;
  font-size:14px;
  font-weight:700;
  word-break:break-word;
}

.footer-contact:hover{
  color:#fff;
}

.footer-contact i{
  width:36px;
  height:36px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.footer-btn{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--yellow);
  color:#111;
  padding:12px 18px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
  transition:.25s;
  width:100%;
}

.footer-btn:hover{
  background:#ffe15a;
  color:#111;
  transform:translateY(-2px);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  color:#8f9aaa;
  font-size:13px;
}

.footer-legal{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-legal a,
.footer-legal span{
  color:#8f9aaa;
  font-weight:700;
}

.footer-legal a:hover{
  color:#fff;
}

@media(max-width:991px){
  .footer-pro{
    padding-top:46px;
  }

  .footer-main{
    padding-bottom:34px;
  }

  .footer-contact-box{
    margin-top:8px;
  }
}

@media(max-width:767px){
  .footer-pro{
    text-align:left;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-legal{
    gap:12px;
  }
}

@media(max-width:576px){
  .footer-contact-box{
    padding:20px;
  }

  .footer-logo{
    max-height:40px;
  }

  .footer-text{
    font-size:14px;
  }
}

/* RESPONSIVE */

@media(max-width:991px){

  .topbar{
    text-align:center;
  }

  .topbar a{
    margin-left:10px;
    margin-right:10px;
  }

  .navbar-collapse{
    padding-top:18px;
  }

  .nav-link{
    margin:4px 0;
  }

  .hero{
    min-height:620px;
    text-align:center;
  }

  .hero p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero .d-flex{
    justify-content:center;
  }

  .section{
    padding:70px 0;
  }

  .section-title{
    letter-spacing:-2px;
  }

  .split-image{
    min-height:360px;
  }

  .portal-card{
    min-height:320px;
  }

  .contact-form,
  .info-box{
    padding:34px;
  }

  .statement{
    padding:80px 0;
  }

  .statement h2{
    letter-spacing:-2px;
  }

  .cta{
    min-height:420px;
    text-align:center;
  }

  .cta p{
    margin-left:auto;
    margin-right:auto;
  }

  .cta .d-flex{
    justify-content:center;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}

@media(max-width:576px){

  .topbar{
    font-size:12px;
  }

  .topbar a{
    display:inline-block;
    margin:4px 8px;
  }

  .navbar{
    padding:10px 0;
  }

  .navbar-brand img{
    height:42px;
  }

  .hero{
    min-height:560px;
    padding:80px 0;
  }

  .hero h1{
    font-size:clamp(40px,14vw,60px);
    letter-spacing:-2px;
  }

  .hero p,
  .section-text{
    font-size:17px;
  }

  .hero-badge{
    font-size:11px;
    letter-spacing:1.5px;
  }

  .btn-fixum,
  .btn-yellow{
    width:100%;
    justify-content:center;
  }

  .section{
    padding:58px 0;
  }

  .section-title{
    font-size:clamp(34px,11vw,46px);
    letter-spacing:-2px;
  }

  .portal-card{
    min-height:300px;
    padding:28px;
  }

  .portal-card h3{
    font-size:32px;
  }

  .portal-card p{
    font-size:16px;
  }

  .statement{
    padding:70px 0;
  }

  .statement h2{
    font-size:clamp(36px,12vw,54px);
    letter-spacing:-2px;
  }

  .statement p{
    font-size:17px;
  }

  .value-card,
  .contact-card{
    padding:32px 26px;
  }

  .contact-form,
  .info-box{
    padding:26px;
  }

  .info-box h3{
    font-size:32px;
  }

  .timeline{
    padding-left:30px;
  }

  .timeline-dot{
    left:-30px;
  }

  .timeline h5{
    font-size:23px;
  }

  .stat-item strong{
    font-size:44px;
  }

  .cta{
    min-height:400px;
    padding:70px 0;
  }

  .cta h2{
    letter-spacing:-2px;
  }

}

/* =========================================================
   TEAM
========================================================= */

.team-card{
  background:#fff;
  border:1px solid var(--border);
  overflow:hidden;
  transition:.3s;
  height:100%;
}

.team-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(22,25,29,.08);
}

.team-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.team-content{
  padding:28px;
}

.team-content span{
  display:block;
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:10px;
}

.team-content h4{
  font-size:26px;
  font-weight:900;
  margin-bottom:12px;
}

.team-content p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

/* =========================================================
   JOIN FIXUM
========================================================= */

.join-fixum{
  background:
  linear-gradient(90deg,
  rgba(0,0,0,.82),
  rgba(0,0,0,.55)),
  url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;

  padding:110px 0;
  color:#fff;
}

.join-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  padding:42px;
}

.join-item{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
  font-size:17px;
  font-weight:700;
}

.join-item:last-child{
  margin-bottom:0;
}

.join-item i{
  color:var(--yellow);
  font-size:22px;
}

@media(max-width:576px){

  .team-card img{
    height:260px;
  }

  .join-box{
    padding:28px;
  }

}








/* STORE INDEX */

.store-hero{
  min-height:78vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.42), rgba(0,0,0,.18)),
    url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.store-hero h1{
  font-size:clamp(42px,7vw,86px);
  font-weight:900;
  line-height:.95;
  letter-spacing:-3px;
  text-transform:uppercase;
  margin-bottom:24px;
}

.store-hero h1 span{
  color:var(--yellow);
}

.store-hero p{
  max-width:720px;
  color:rgba(255,255,255,.88);
  font-size:20px;
  line-height:1.8;
  margin-bottom:30px;
}

.store-search{
  max-width:760px;
  background:#fff;
  padding:8px;
  margin-bottom:18px;
}

.store-search form{
  display:flex;
  align-items:center;
  gap:12px;
}

.store-search i{
  color:var(--blue);
  font-size:22px;
  margin-left:12px;
}

.store-search input{
  flex:1;
  border:none;
  outline:none;
  min-height:48px;
  font-weight:700;
  color:var(--text);
}

.store-search button{
  background:var(--blue);
  color:#fff;
  border:none;
  min-height:48px;
  padding:0 28px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.store-quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.store-quick-links a{
  color:#fff;
  border:1px solid rgba(255,255,255,.32);
  padding:8px 14px;
  font-size:13px;
  font-weight:800;
}

.store-quick-links a:hover{
  background:var(--yellow);
  border-color:var(--yellow);
  color:#111;
}

.store-hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  padding:42px;
}

.store-hero-card span{
  color:var(--yellow);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
}

.store-hero-card h3{
  font-size:34px;
  font-weight:900;
  line-height:1.05;
  margin:16px 0;
}

.store-hero-card p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:26px;
}

.store-benefits{
  background:#111820;
  padding:22px 0;
}

.benefit-item{
  color:#fff;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:14px;
}

.benefit-item i{
  color:var(--yellow);
  font-size:24px;
}

.shop-category-card{
  display:block;
  height:100%;
  background:#fff;
  border:1px solid var(--border);
  padding:34px;
  color:var(--text);
  transition:.3s;
}

.shop-category-card:hover{
  color:var(--text);
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(22,25,29,.08);
}

.shop-category-icon{
  width:76px;
  height:76px;
  background:var(--light);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin-bottom:28px;
}

.shop-category-card h3{
  font-size:28px;
  font-weight:900;
  margin-bottom:12px;
}

.shop-category-card p{
  color:var(--muted);
  line-height:1.75;
  margin-bottom:22px;
}

.shop-category-card span{
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.shop-product-card{
  background:#fff;
  border:1px solid var(--border);
  height:100%;
  transition:.3s;
}

.shop-product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(22,25,29,.08);
}

.shop-product-img{
  position:relative;
  height:220px;
  background:#111820;
  color:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:64px;
}

.product-badge{
  position:absolute;
  top:16px;
  left:16px;
  background:var(--yellow);
  color:#111;
  padding:7px 10px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.shop-product-body{
  padding:26px;
}

.shop-product-body small{
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.3px;
}

.shop-product-body h4{
  font-size:22px;
  font-weight:900;
  margin:10px 0;
}

.shop-product-body p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}

.product-actions{
  display:flex;
  gap:10px;
}

.product-btn{
  flex:1;
  background:var(--blue);
  color:#fff;
  padding:11px 14px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  text-align:center;
}

.product-btn:hover{
  background:var(--blue-dark);
  color:#fff;
}

.product-icon-btn{
  width:42px;
  height:42px;
  background:var(--yellow);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.product-icon-btn:hover{
  color:#111;
  background:#ffe15a;
}

.store-banner{
  background:#111820;
  color:#fff;
  padding:70px 0;
}

.store-banner-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.store-banner h2{
  font-size:clamp(34px,4vw,58px);
  font-weight:900;
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.store-banner p{
  color:rgba(255,255,255,.78);
  max-width:720px;
  line-height:1.8;
  margin:0;
}

@media(max-width:991px){
  .store-hero{
    min-height:auto;
    padding:90px 0;
    text-align:center;
  }

  .store-search{
    margin-left:auto;
    margin-right:auto;
  }

  .store-quick-links{
    justify-content:center;
  }

  .store-hero-card{
    margin-top:20px;
  }

  .store-banner-inner{
    flex-direction:column;
    text-align:center;
  }
}

@media(max-width:576px){
  .store-search form{
    flex-direction:column;
    align-items:stretch;
  }

  .store-search i{
    display:none;
  }

  .store-search input{
    text-align:center;
  }

  .store-search button{
    width:100%;
  }

  .store-hero-card{
    padding:28px;
  }

  .shop-category-card{
    padding:28px;
  }
}

/* =========================================================
   FORMAR PARTE PREMIUM
========================================================= */

.career-hero{
  min-height:78vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(0,0,0,.84),rgba(0,0,0,.50),rgba(0,0,0,.25)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.career-hero h1{
  font-size:clamp(46px,7vw,94px);
  line-height:.92;
  font-weight:900;
  letter-spacing:-4px;
  text-transform:uppercase;
  margin-bottom:26px;
}

.career-hero h1 span{
  color:var(--yellow);
}

.career-hero p{
  max-width:760px;
  color:rgba(255,255,255,.84);
  font-size:20px;
  line-height:1.85;
  margin-bottom:34px;
}

.career-hero-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
  padding:44px;
  color:#fff;
}

.career-hero-card i{
  color:var(--yellow);
  font-size:52px;
  margin-bottom:26px;
  display:block;
}

.career-hero-card h3{
  font-size:34px;
  font-weight:900;
  margin-bottom:16px;
}

.career-hero-card p{
  font-size:16px;
  margin:0;
}

.career-strip{
  background:#111820;
  color:#fff;
  padding:34px 0;
}

.career-strip-item{
  display:flex;
  align-items:center;
  gap:18px;
}

.career-strip-item strong{
  color:var(--yellow);
  font-size:38px;
  font-weight:900;
  line-height:1;
}

.career-strip-item span{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.career-position{
  background:#fff;
  border:1px solid var(--border);
  padding:38px;
  height:100%;
  transition:.3s;
  position:relative;
  overflow:hidden;
}

.career-position::after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  border-radius:50%;
  background:var(--yellow);
  right:-60px;
  bottom:-60px;
  opacity:0;
  transition:.3s;
}

.career-position:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(22,25,29,.08);
}

.career-position:hover::after{
  opacity:.9;
}

.career-position.featured{
  background:#111820;
  color:#fff;
  border-color:#111820;
}

.career-icon{
  width:72px;
  height:72px;
  background:var(--light);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:26px;
  position:relative;
  z-index:2;
}

.career-position.featured .career-icon{
  background:rgba(255,255,255,.08);
  color:var(--yellow);
}

.career-position span{
  display:block;
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:12px;
  position:relative;
  z-index:2;
}

.career-position.featured span{
  color:var(--yellow);
}

.career-position h3{
  font-size:28px;
  font-weight:900;
  margin-bottom:16px;
  position:relative;
  z-index:2;
}

.career-position p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:22px;
  position:relative;
  z-index:2;
}

.career-position.featured p{
  color:rgba(255,255,255,.75);
}

.career-position ul{
  list-style:none;
  padding:0;
  margin:0;
  position:relative;
  z-index:2;
}

.career-position ul li{
  color:var(--muted);
  font-weight:800;
  margin-bottom:10px;
}

.career-position.featured ul li{
  color:rgba(255,255,255,.75);
}

.career-culture{
  background:#111820;
  color:#fff;
  padding:110px 0;
}

.career-image{
  min-height:560px;
  background:
    linear-gradient(rgba(36,79,134,.15),rgba(36,79,134,.25)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.career-list{
  margin-top:34px;
  display:grid;
  gap:16px;
}

.career-list div{
  color:rgba(255,255,255,.82);
  font-weight:800;
  display:flex;
  align-items:center;
  gap:12px;
}

.career-list i{
  color:var(--yellow);
}

.career-apply-info{
  background:#111820;
  color:#fff;
  padding:46px;
  height:100%;
}

.career-apply-info h2{
  font-size:clamp(34px,4vw,54px);
  font-weight:900;
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:22px;
}

.career-apply-info p{
  color:rgba(255,255,255,.75);
  line-height:1.85;
}

.apply-contact{
  display:grid;
  gap:16px;
  margin-top:34px;
}

.apply-contact div{
  display:flex;
  align-items:center;
  gap:14px;
  color:rgba(255,255,255,.82);
  font-weight:800;
}

.apply-contact i{
  width:42px;
  height:42px;
  background:rgba(255,255,255,.08);
  color:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
}

.career-form{
  background:#fff;
  border:1px solid var(--border);
  padding:46px;
  height:100%;
}

.career-form label{
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:8px;
  color:var(--text);
}

@media(max-width:991px){
  .career-hero{
    padding:90px 0;
    text-align:center;
  }

  .career-hero .d-flex{
    justify-content:center;
  }

  .career-hero-card{
    margin-top:20px;
  }

  .career-strip-item{
    justify-content:center;
  }

  .career-culture{
    padding:80px 0;
  }

  .career-image{
    min-height:360px;
  }
}

@media(max-width:576px){
  .career-hero h1{
    letter-spacing:-2px;
  }

  .career-hero p{
    font-size:17px;
  }

  .career-hero-card,
  .career-position,
  .career-form,
  .career-apply-info{
    padding:28px;
  }

  .career-strip-item{
    justify-content:flex-start;
  }

  .career-image{
    min-height:300px;
  }
}