:root {
  --cor-branco: #ffffff;
  --cor-laranja-principal: #ffb13b;
  --cor-laranja-claro: #f3bf5b;
  --cor-cinza-escuro: #1A1A1A;
  --cor-cinza-medio: #2E2E2E;
  --cor-cinza-claro: #B3B3B3;
  --fonte-titulo: 'Montserrat', sans-serif;
  --fonte-texto: 'Inter', sans-serif;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--fonte-texto);
  color: var(--cor-cinza-escuro);
  background: #fff;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   Header + Navegação
=========================== */
.header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo img {
  height: 70px;
  transition: transform .3s;
  display: block;
  position: relative;
  z-index: 1002;
}

.logo img:hover {
  transform: scale(1.06);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__link {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  text-decoration: none;
  color: var(--cor-cinza-escuro);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cor-laranja-principal);
  transform: scaleX(0);
  transition: transform .3s;
}

.nav__link:hover {
  color: var(--cor-laranja-principal);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1003;
}

.hamburger .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { top: 11px; }
.hamburger .bar:nth-child(3) { top: 22px; }

.hamburger.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .bar:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.is-active .bar:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile menu */
@media (max-width: 992px) {
  .nav {
    position: fixed;
    inset: 80px 0 0 0;
    background: #fff;
    display: none;
    z-index: 900;
    padding: 16px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 24px; padding: 0; }
  .hamburger { display: inline-block; }
}

/* ===========================
   Hero Swiper
=========================== */
.hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 1024px) { .hero img { height: 520px; } }
@media (max-width: 768px) { .hero img { height: 420px; } }
@media (max-width: 480px) { .hero img { height: 360px; } }

.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: #fff;
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: rgba(0,0,0,.55);
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}
.hero .swiper-pagination-bullet {
  background: #fff;
  opacity: .6;
  width: 8px;
  height: 8px;
  transition: transform .2s, opacity .2s;
}
.hero .swiper-pagination-bullet-active {
  background: var(--cor-laranja-principal);
  opacity: 1;
  transform: scale(1.2);
}

/* ===========================
   Intro
=========================== */
.intro { padding: 80px 0; }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 768px) { .intro__grid { grid-template-columns: 1fr; } }
.intro__text h2 { font-family: var(--fonte-titulo); font-size: 2rem; margin-bottom: 16px; }
.intro__text p { margin-bottom: 24px; }
.intro__actions { display: flex; gap: 12px; flex-wrap: nowrap; }
@media (max-width: 768px) {
  .intro__actions { flex-wrap: wrap; }
  .intro__actions .btn { flex: 1 1 100%; }
}
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, filter .2s ease;
}
.btn:active { transform: scale(1.1); }
.btn:focus-visible { outline: 2px solid var(--cor-laranja-claro); outline-offset: 2px; }
.btn--solid {
  text-align: center;
  background: var(--cor-laranja-principal);
  color: #fff;
  border: 2px solid var(--cor-laranja-principal);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.btn--solid:hover { transform: scale(1.05); }
.intro__image img { width: 100%; border-radius: 8px; }

/* ===========================
   Clientes
=========================== */
.clients { padding: 60px 0; background: var(--cor-branco); }
.section-title {
  text-align: left;
  font-family: var(--fonte-titulo);
  margin-bottom: 40px;
  font-size: 1.5rem;
  color: var(--cor-cinza-escuro);
}
.clients img { max-height: 80px; object-fit: contain; filter: grayscale(30%); }
.clients .swiper-wrapper { align-items: center; }

/* ===========================
   Footer
=========================== */
.footer {
  position: relative;
  background: #121212;
  color: #e9e9e9;
  padding: 56px 0 24px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cor-laranja-principal);
  opacity: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
  justify-items: center;
  text-align: center;
}
.footer__brand p { color: #d6d6d6; max-width: 440px; margin: 6px auto 14px; }
.footer__badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.badge {
  padding: 6px 10px;
  border: 1.5px solid var(--cor-laranja-principal);
  border-radius: 999px;
  font-size: .85rem;
}
.footer h4 {
  font-family: var(--fonte-titulo);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .2px;
  position: relative;
}
.footer h4::after {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--cor-laranja-principal);
  border-radius: 2px;
  margin: 8px auto 0;
}
.footer__list { list-style: none; padding: 0; margin: 8px 0 0 0; }
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  color: #ececec;
  text-decoration: none;
  opacity: .95;
  transition: color .2s ease, transform .12s ease;
}
.footer__list a:hover, .footer__list a:focus {
  color: var(--cor-laranja-principal);
  transform: translateX(3px);
}

/* Ícones de contato */
.footer__icons .ico {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  transform: translateY(3px);
  background-size: 18px 18px;
  background-repeat: no-repeat;
}
.ico.phone {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb13b'><path d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V21a1 1 0 01-1 1C10.19 22 2 13.81 2 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.21 2.2z'/></svg>");
}
.ico.mail {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb13b'><path d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/></svg>");
}
.ico.map {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb13b'><path d='M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/></svg>");
}

/* Social */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid var(--cor-laranja-principal);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .12s ease, filter .2s ease;
}
.soc:hover { transform: scale(1.06); filter: brightness(1.1); }
.soc.wa {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb13b'><path d='M20 3.5A10.5 10.5 0 006.2 20.9L3 21l1.1-3.1A10.5 10.5 0 1020 3.5zm-4.2 12.4c-.5.1-1.2.2-2-.1-2.2-.9-4-3.1-4.6-4.3-.3-.6-.3-1.1-.2-1.5l.3-.6c.1-.2.2-.3.3-.4.1-.1.2-.1.3-.1h.3c.1 0 .2 0 .3.2.1.1.3.4.4.6.1.2.2.4.2.6 0 .1 0 .2-.1.3l-.2.3c-.1.1-.1.2 0 .3.3.6.8 1.2 1.4 1.8.6.6 1.3 1 1.9 1.3.1.1.2 0 .3 0l.4-.2c.1 0 .2-.1.3 0 .1 0 .2.1.3.2l.5.3c.2.1.3.2.4.3.1.1.1.2.1.3 0 .2 0 .4-.1.5-.2.5-.7.7-1 .8z'/></svg>");
}
.soc.ig {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb13b'><path d='M7 2h10a5 5 0 015 5v10a5 5 0 01-5 5H7a5 5 0 01-5-5V7a5 5 0 015-5zm5 5a5 5 0 100 10 5 5 0 000-10zm6-1a1 1 0 100 2 1 1 0 000-2z'/></svg>");
}
.soc.in {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb13b'><path d='M4.98 3.5C4.98 4.88 3.86 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5zM.5 8.5h4V23h-4V8.5zm7.5 0h3.8v2h.1c.5-.9 1.8-2.2 3.9-2.2 4.2 0 5 2.7 5 6.2V23h-4v-6.5c0-1.6 0-3.8-2.3-3.8-2.3 0-2.6 1.8-2.6 3.7V23h-4V8.5z'/></svg>");
}

/* Barra final */
.footer__bar {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bcbcbc;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bar { flex-direction: column; }
}

/* ===========================
   Fale Conosco (flutuante)
=========================== */
.fab-contact{
  position:fixed; right:20px; bottom:20px; z-index:1200;
  display:inline-flex; align-items:center; gap:10px;
  background:var(--cor-laranja-principal); color:#fff;
  padding:12px 16px; border-radius:999px; text-decoration:none; font-weight:700;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
  transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.fab-contact:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.24); }
.fab-contact.is-hidden{ opacity:0; pointer-events:none; }
.fab-contact__icon{ font-size:18px; line-height:1; }
@media (max-width:480px){ .fab-contact{ padding:10px 12px; } .fab-contact__label{ display:none; } }
