/* smart-hero-menu.css
   CSS isolado apenas para o novo header, menu, hero e botões do hero SmartEAD.
   Todos os seletores usam o prefixo sme para evitar conflito com styles.css.
*/

:root{
  --sme-amber:#FFAB00;
  --sme-amber-dark:#E09600;
  --sme-carbon:#0A0A0A;
  --sme-white:#fff;
  --sme-border:#E8E8E8;
  --sme-text-dark:#1A1A1A;
  --sme-text-mid:#555;
  --sme-text-light:#999;
}

#sme-header,
#sme-hero{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

#sme-header *,
#sme-header *::before,
#sme-header *::after,
#sme-hero *,
#sme-hero *::before,
#sme-hero *::after{
  box-sizing:border-box;
}

#sme-header a,
#sme-hero a{
  text-decoration:none;
  color:inherit;
}

#sme-header img,
#sme-hero img{
  max-width:100%;
  display:block;
}

#sme-header button,
#sme-hero button{
  cursor:pointer;
  font-family:inherit;
  border:none;
  outline:none;
}

#sme-hero ul{
  list-style:none;
  margin:0;
  padding:0;
}

.sme-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:10px;
  font-size:.9rem;
  font-weight:600;
  transition:all .2s ease;
  letter-spacing:.01em;
}

.sme-btn-amber{
  background:var(--sme-amber);
  color:var(--sme-carbon);
}

.sme-btn-amber:hover{
  background:var(--sme-amber-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,171,0,.4);
}

.sme-btn-outline{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1.5px solid rgba(255,255,255,.4);
  backdrop-filter:blur(6px);
}

.sme-btn-outline:hover{
  border-color:#fff;
  background:rgba(255,255,255,.16);
}

.sme-btn-lg{
  padding:16px 30px;
  font-size:.95rem;
}

.sme-btn-full{
  width:100%;
}

#sme-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  padding:18px 20px;
}

.sme-nav-pill{
  max-width:1200px;
  margin:0 auto;
  height:64px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 40px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px 0 22px;
}

.sme-nav-logo{
  display:flex;
  align-items:center;
  gap:9px;
}

.sme-nav-logo img{
  height:30px;
  width:auto;
}

.sme-nav-wordmark{
  font-size:1.3rem;
  font-weight:800;
  letter-spacing:-.045em;
  line-height:1;
}

.sme-wm-smart{color:#111;}
.sme-wm-ead{color:var(--sme-amber);}

.sme-nav-links{
  display:flex;
  align-items:center;
  gap:22px;
}

.sme-nav-links a{
  font-size:.85rem;
  font-weight:500;
  color:#4a4a4a;
  transition:color .2s;
}

.sme-nav-links a:hover{
  color:#111;
}

.sme-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.sme-nav-login{
  font-size:.85rem;
  font-weight:600;
  padding:9px 18px;
  border-radius:9px;
  border:1.5px solid var(--sme-amber);
  color:var(--sme-amber-dark);
  background:transparent;
  transition:all .2s;
}

.sme-nav-login:hover{
  background:var(--sme-amber);
  color:var(--sme-carbon);
}

.sme-nav-cta{
  padding:10px 18px;
  font-size:.85rem;
}

.sme-nav-mobile-cta{
  display:none;
}

.sme-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  padding:4px;
}

.sme-hamburger span{
  width:22px;
  height:2px;
  border-radius:2px;
  background:#111;
  display:block;
  transition:all .2s;
}

#sme-hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
}

.sme-hero-bg{
  position:absolute;
  inset:0;
  background-image:url('sme-hero-desktop.webp');
  background-size:cover;
  background-position:60% 32%;
  z-index:0;
}

.sme-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(100deg,rgba(26,13,0,.95) 0%,rgba(56,26,0,.88) 24%,rgba(125,60,0,.62) 50%,rgba(196,104,14,.34) 76%,rgba(220,128,28,.22) 100%);
  z-index:1;
}


.sme-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:120px 24px 70px;
  display:grid;
  grid-template-columns:1fr 430px;
  gap:64px;
  align-items:center;
}

.sme-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--sme-amber);
  margin-bottom:22px;
  background:rgba(255,171,0,.12);
  border:1px solid rgba(255,171,0,.32);
  padding:7px 14px;
  border-radius:100px;
}

.sme-hero-badge .sme-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--sme-amber);
  animation:sme-blink 2s infinite;
}

@keyframes sme-blink{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.45;transform:scale(.8)}
}

.sme-hero-left h1{
  font-size:clamp(2.3rem,4.6vw,3.7rem);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.035em;
  color:#fff;
  margin:0 0 26px;
  text-shadow:0 2px 30px rgba(0,0,0,.35);
  padding-right: 50px;
  margin-top: -190px;
}

.sme-hero-checklist{
  display:flex;
  flex-direction:column;
  gap:13px;
  margin:0 0 34px;
  padding:0;
}

.sme-hero-check-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.96rem;
  color:rgba(255,255,255,.92);
  font-weight:400;
  padding-right: 40px;
}

.sme-check-icon{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#22c55e;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 2px 8px rgba(34,197,94,.4);
}

.sme-check-icon svg{
  width:12px;
  height:12px;
}

.sme-hero-ctas{
  display:none;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.sme-trust-card{
  display:inline-flex;
  flex-direction:column;
  gap:9px;
  padding:16px 20px;
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:14px;
}

.sme-trust-card-title{
  font-size:.82rem;
  font-weight:700;
  color:#fff;
}

.sme-trust-card-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.sme-trust-stars{
  color:var(--sme-amber);
  font-size:1rem;
  letter-spacing:2px;
}

.sme-trust-rating{
  font-size:.92rem;
  font-weight:700;
  color:#fff;
}

.sme-store-badges{
  display:flex;
  align-items:center;
  gap:7px;
  margin-left:2px;
}

.sme-store-badges svg{
  width:15px;
  height:15px;
  display:block;
}

.sme-trust-card-sub{
  font-size:.76rem;
  color:rgba(255,255,255,.72);
}

.sme-hero-right{
  justify-self:end;
  width:100%;
}

.sme-hero-form-card{
  background:#FAF8F4;
  border-radius:20px;
  padding:30px 28px;
  box-shadow:0 28px 80px rgba(0,0,0,.42),0 0 0 1px rgba(255,255,255,.08);
}

.sme-hero-form-card h3{
  font-size:1.45rem;
  font-weight:800;
  color:var(--sme-text-dark);
  text-align:center;
  letter-spacing:-.02em;
  line-height:1.2;
  margin:0;
}

.sme-form-sub{
  font-size:.85rem;
  color:var(--sme-text-light);
  text-align:center;
  margin:5px 0 20px;
}

.sme-sso-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:18px;
}

.sme-sso-btn{
  height:46px;
  border:1.5px solid var(--sme-border);
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .2s;
}

.sme-sso-btn:hover{
  border-color:#bbb;
  background:#fafafa;
  transform:translateY(-1px);
}

.sme-sso-btn svg{
  height:20px;
  width:auto;
}

.sme-or-divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 16px;
  color:var(--sme-text-light);
  font-size:.78rem;
}

.sme-or-divider::before,
.sme-or-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--sme-border);
}

.sme-form-field{
  margin-bottom:11px;
  position:relative;
}

.sme-form-field input{
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  border:1.5px solid var(--sme-border);
  font-family:inherit;
  font-size:.9rem;
  color:var(--sme-text-dark);
  outline:none;
  transition:border-color .2s;
  background:#fff;
}

.sme-form-field input:focus{
  border-color:var(--sme-amber);
}

.sme-form-field input::placeholder{
  color:#bbb;
}

.sme-form-field.sme-has-eye input{
  padding-right:44px;
}

.sme-eye-btn{
  position:absolute;
  right:6px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:8px;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#aaa;
}

.sme-eye-btn svg{
  width:18px;
  height:18px;
}

.sme-eye-btn:hover{
  color:#666;
}

.sme-form-terms{
  font-size:.72rem;
  color:var(--sme-text-light);
  line-height:1.5;
  margin:6px 0 14px;
}

.sme-form-terms a{
  color:var(--sme-amber-dark);
  font-weight:600;
}

.sme-form-secure{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:.74rem;
  color:var(--sme-text-light);
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--sme-border);
}

.sme-anim{
  opacity:0;
  transform:translateY(18px);
  animation:sme-rise .7s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes sme-rise{
  to{opacity:1;transform:translateY(0)}
}

.sme-d1{animation-delay:.05s;}
.sme-d2{animation-delay:.15s;}
.sme-d3{animation-delay:.25s;}
.sme-d4{animation-delay:.35s;}
.sme-d5{animation-delay:.2s;}

@media (max-width:1024px){
  .sme-hero-content{
    grid-template-columns:1fr;
    gap:40px;
    padding-top:130px;
  }

  .sme-hero-right{
    justify-self:stretch;
  }

  .sme-hero-form-card{
    max-width:520px;
    margin:0 auto;
  }
}

@media (max-width:768px){
  #sme-header{
    padding:12px 12px;
  }

  .sme-nav-pill{
    height:58px;
    padding:0 10px 0 16px;
    border-radius:16px;
  }

  .sme-nav-links,
  .sme-nav-login,
  .sme-nav-cta{
    display:none;
  }

  .sme-nav-mobile-cta{
    display:inline-flex;
    padding:9px 16px;
    font-size:.82rem;
  }

  .sme-hamburger{
    display:flex;
  }

  #sme-hero{
    min-height:auto;
    display:block;
    background:#0a0700;
  }

  .sme-hero-bg,
  .sme-hero-overlay{
    display:none !important;
  }

  .sme-hero-content{
    display:block;
    padding:0;
    margin:0;
    max-width:none;
    background-color:#0a0700;
    background-image:url('sme-hero-mobile.webp');
    background-repeat:no-repeat;
    background-position:top center;
    background-size:100% auto;
  }

  .sme-hero-left{
    background:transparent;
    padding:112% 22px 24px;
    text-align:left;
  }

  .sme-hero-badge{
    margin-left:auto;
    margin-right:auto;
  }

  .sme-hero-left h1{
    font-size:clamp(2rem,10vw,2.7rem);
  }

  .sme-hero-checklist{
    text-align:left;
    max-width:420px;
    margin:0 auto 26px;
  }

  .sme-hero-ctas{
    display:flex;
    justify-content:center;
    margin-bottom:30px;
  }

  .sme-trust-card{
    align-self:center;
    align-items:center;
    text-align:center;
  }

  .sme-trust-card-row{
    justify-content:center;
  }

  .sme-hero-right{
    background:transparent;
    padding:0 20px 48px;
  }

  .sme-hero-form-card{
    box-shadow:0 18px 50px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.06);
  }
}

@media (max-width:480px){
  .sme-hero-ctas{
    flex-direction:column;
  }

  .sme-hero-ctas .sme-btn{
    width:100%;
  }

  .sme-hero-left{
    padding-top:114%;
  }

  .sme-hero-left h1{
    font-size:clamp(1.9rem,8.5vw,2.5rem);
  }
}
