:root{
  /* Identidade Marlux (extraída da logo) */
  --brand-bg: #2B3A4F;     /* azul da logo */
  --brand-bg-2: #3A4F6A;   /* variação do azul */
  --brand-gold: #F1D354;   /* dourado da logo */
  --brand-white: #FEFEFE;

  /* Tema do site */
  --bg: #0f1726;           /* fundo geral (harmoniza com a logo) */
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.14);
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --max: 1100px;

  /* Mapeamento */
  --accent: var(--brand-gold);
  --accent2: var(--brand-bg-2);
}


*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(241,211,84,.10), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(58,79,106,.22), transparent 55%),
    radial-gradient(1200px 800px at 50% 100%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
  color:var(--text);
}


a{color:inherit;text-decoration:none}
.container{width:min(100% - 40px,var(--max));margin:auto}
.muted{color:var(--muted)}
.tiny{font-size:.9rem}

.site-header{
  position:sticky;top:0;z-index:5;
  backdrop-filter:blur(12px);
  background:rgba(11,18,32,.65);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;justify-content:space-between;align-items:center;padding:14px 0;gap:16px}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:34px;height:34px;display:grid;place-items:center;
  border-radius:12px;border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(245,197,66,.22), rgba(76,201,240,.18));
}

.nav{display:flex;gap:14px}
.nav a{color:var(--muted);padding:8px 10px;border-radius:12px}
.nav a.is-active{color:var(--text);background:rgba(255,255,255,.06);border:1px solid var(--line)}

.hero{padding:56px 0 26px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:26px;align-items:center}
.badge{
  display:inline-block;padding:8px 12px;border-radius:999px;
  border:1px solid var(--line);background:rgba(255,255,255,.05);
  color:var(--muted);font-weight:700;margin-bottom:12px
}
h1{margin:0 0 12px;font-size:clamp(2rem,3.5vw,3.1rem);line-height:1.08}
.grad{
  background: linear-gradient(90deg, var(--brand-gold), #ffd86a);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{color:var(--muted);font-size:1.05rem;max-width:60ch}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,.06);font-weight:800
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand-gold), #ffd86a);
  color:#1b2433;
  border:0;
  box-shadow: var(--shadow);
}

/* Hero image */
.hero-media{
  position:relative;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow);
  min-height:420px;background:rgba(255,255,255,.03)
}
.hero-media img{width:100%;height:100%;object-fit:cover;display:block}
.hero-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top, rgba(11,18,32,.88), rgba(11,18,32,.12));
}
.hero-media-overlay{
  position:absolute;left:18px;bottom:18px;z-index:2;
  padding:10px 14px;border-radius:999px;
  background:rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.25);
  font-weight:800;font-size:.92rem
}

.section{padding:38px 0}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{
  border:1px solid var(--line);background:rgba(255,255,255,.04);
  border-radius:var(--radius);padding:18px
}

.card-media{
  height:140px;border-radius:14px;overflow:hidden;border:1px solid var(--line);
  background:rgba(255,255,255,.03);margin-bottom:12px
}
.card-media img{width:100%;height:100%;object-fit:cover;display:block}

.page-hero{padding:40px 0 10px}

.filters{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 18px}
.pill{
  padding:10px 12px;border-radius:999px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);color:var(--muted);cursor:pointer;font-weight:700
}
.pill.is-active{
  color: var(--text);
  border-color: rgba(241,211,84,.45);
  background: rgba(241,211,84,.10);
}

.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.work{border:1px solid var(--line);background:rgba(255,255,255,.04);border-radius:var(--radius);overflow:hidden}
.work-thumb{
  height:170px;display:grid;place-items:center;
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color:var(--muted);font-weight:800
}
.work-body{padding:16px}
.work-body h2{margin:0 0 8px;font-size:1.15rem}

.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:18px;align-items:start}
.form-wrap{
  border:1px solid var(--line);background:rgba(255,255,255,.04);
  border-radius:var(--radius);padding:18px
}
.form{display:grid;gap:12px;margin-top:12px}
label{display:grid;gap:6px;font-weight:700}
input,select,textarea{
  width:100%;padding:12px;border-radius:14px;border:1px solid var(--line);
  background:rgba(11,18,32,.35);color:var(--text);outline:none
}
.footer{padding:26px 0 22px;border-top:1px solid var(--line);margin-top:28px;background:rgba(0,0,0,.08)}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media{min-height:320px}
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{gap:8px}
}
/* ===== Carrossel ===== */
.carousel{
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.carousel-track{
  position: relative;
  height: 100%;
}

.carousel-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.carousel-slide.active{
  opacity: 1;
  z-index: 1;
}

.carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(11,18,32,.85),
    rgba(11,18,32,.35)
  );
}

.carousel-caption{
  position:absolute;
  left: max(5vw, 40px);
  bottom: 60px;
  z-index:2;
  max-width: 520px;
}

.carousel-caption h2{
  margin:0 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.carousel-caption p{
  margin:0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Botões */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--line);
  background: rgba(0,0,0,.55);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  z-index:3;
}

.carousel-btn.prev{ left:16px; }
.carousel-btn.next{ right:16px; }

.carousel-btn:hover{
  background: rgba(0,0,0,.75);
}

/* Mobile */
@media (max-width:900px){
  .carousel{ height: 300px; }
  .carousel-caption{ bottom: 30px; }
}
/* ===== Logo Marlux (limpa, sem contorno) ===== */
.brand-logo{
  width: 58px;
  height: auto;
  max-height: 48px;
  object-fit: contain;

  /* remove qualquer visual indesejado */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ===== Header Marlux ===== */
.brand-link{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none !important;
}

.brand-logo{
  width:56px;
  height:auto;
  max-height:48px;
  border-radius:12px;
  border:1px solid var(--line);
  object-fit:contain;
  background: rgba(255,255,255,.02);
}

.brand-name{ letter-spacing:.2px; }
.brand-tag{ color: var(--muted); }

/* ===== Foco dos campos (Identidade Marlux) ===== */
input:focus,
select:focus,
textarea:focus{
  border-color: rgba(241,211,84,.65);
  box-shadow: 0 0 0 3px rgba(241,211,84,.14);
}
/* ===== Botões premium (Marlux) ===== */
.btn{
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  border-color: rgba(241,211,84,.35);
  text-decoration: none !important;
}

.btn:active{
  transform: translateY(0px);
}

.btn-primary:hover{
  box-shadow: 0 18px 52px rgba(241,211,84,.18), 0 18px 60px rgba(0,0,0,.35);
}
/* ===== Foco premium (Marlux) ===== */
input, select, textarea{
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
select:focus,
textarea:focus{
  border-color: rgba(241,211,84,.65);
  box-shadow: 0 0 0 3px rgba(241,211,84,.14);
  background: rgba(11,18,32,.45);
}
/* ===== Carrossel premium (Marlux) ===== */
.carousel-btn{
  border-color: rgba(241,211,84,.35);
  background: rgba(11,18,32,.55);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.carousel-btn:hover{
  background: rgba(241,211,84,.14);
  border-color: rgba(241,211,84,.55);
  box-shadow: 0 16px 44px rgba(0,0,0,.35);
  transform: translateY(-1px);
}

.carousel-btn:active{
  transform: translateY(0px);
}

/* Indicadores (bolinhas) */
.carousel-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:4;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}

.carousel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid rgba(241,211,84,.45);
  background: rgba(241,211,84,.18);
  cursor:pointer;
  transition: transform .15s ease, background .2s ease;
}

.carousel-dot.active{
  background: rgba(241,211,84,.92);
  transform: scale(1.15);
}
/* ===== Linha dourada abaixo do menu (Marlux) ===== */
.site-header::after{
  content:"";
  display:block;
  height: 3px;
  background: linear-gradient(
    to right,
    rgba(241,211,84,.0),
    rgba(241,211,84,.85),
    rgba(241,211,84,.0)
  );
}
/* ===== Badge Marlux no Carrossel ===== */
.carousel-badge{
  position: absolute;
  top: 22px;
  left: max(5vw, 40px);
  z-index: 5;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(241,211,84,.95),
    rgba(255,221,130,.95)
  );
  color: #1b2433;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow:
    0 12px 36px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.carousel-badge span{
  font-size: .95rem;
}

/* Mobile: badge menor */
@media (max-width:900px){
  .carousel-badge{
    top: 14px;
    left: 16px;
    padding: 8px 12px;
  }
}
/* ===== Animação da badge do carrossel ===== */
.carousel-badge{
  transition: transform .35s ease, opacity .35s ease;
}

.carousel-badge.animate{
  transform: translateY(-6px);
  opacity: .85;
}
/* ===== Selo técnico Marlux ===== */
.carousel-seal{
  position:absolute;
  top: 72px;
  left: max(5vw, 40px);
  z-index:4;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(11,18,32,.65);
  border: 1px solid rgba(241,211,84,.45);
  color: var(--text);
  font-size: .75rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* Mobile */
@media (max-width:900px){
  .carousel-seal{
    top: 58px;
    left: 16px;
    font-size: .7rem;
  }
}
/* ===== Menu premium (Marlux) ===== */
.nav a{
  position: relative;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.nav a:hover{
  color: var(--text);
  background: rgba(241,211,84,.08);
  border-color: rgba(241,211,84,.25);
  text-decoration: none !important;
}

.nav a.is-active{
  border: 1px solid rgba(241,211,84,.22);
  background: rgba(241,211,84,.06);
}

/* Sublinhado animado dourado */
.nav a::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241,211,84,0), rgba(241,211,84,.9), rgba(241,211,84,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav a:hover::after,
.nav a.is-active::after{
  transform: scaleX(1);
}
/* ===== WhatsApp fixo (Marlux) ===== */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241,211,84,.95), rgba(255,221,130,.95));
  color: #1b2433;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .2s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}

.wa-ico{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11,18,32,.16);
  border: 1px solid rgba(27,36,51,.15);
  font-size: 16px;
}

.wa-text{ font-size: .95rem; }

/* Mobile: só ícone (fica mais clean) */
@media (max-width: 900px){
  .wa-text{ display:none; }
  .wa-float{ padding: 12px; }
}
/* ===== Selo extra (Marlux) ===== */
.carousel-seal2{
  position:absolute;
  top: 108px;
  left: max(5vw, 40px);
  z-index:4;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(11,18,32,.55);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .2px;
  backdrop-filter: blur(6px);
}

@media (max-width:900px){
  .carousel-seal2{
    top: 92px;
    left: 16px;
    font-size: .7rem;
  }
}
/* ===== Rodapé: alinhamento vertical logo + texto ===== */
.brand-footer{
  display: flex;
  align-items: center;   /* 🔥 isso resolve */
  gap: 12px;
}
