/* ============================================================
   ALICATE DE OURO — style.css
   Fiel ao layout de jweletricas.com.br
   Paleta: Dourado (#D4AF37) · Branco · Preto
   Fontes: Outfit (títulos) · Inter (texto)
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Variáveis ─────────────────────────────────────────────── */
:root {
  --gold:        #D4AF37;
  --gold-hover:  #C09820;
  --gold-light:  #EDD045;
  --dark:        #1a1a1a;
  --gray:        #555;
  --light-gray:  #f5f5f5;
  --border:      #e0e0e0;
  --white:       #ffffff;
  --green:       #25D366;
  --green-hover: #1ebe5d;
}

/* ============================
   TOPBAR
   ============================ */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 12px 0;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}

.topbar-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topbar-center { align-items: center; text-align: center; }
.topbar-right  { align-items: flex-end; text-align: right; }

.topbar-col strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.topbar-col span,
.topbar-col a {
  font-size: 0.82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.topbar-col a:hover { color: var(--gold); }

.topbar-center a,
.topbar-right a {
  justify-content: center;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  background: var(--gold);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-bolt {
  font-size: 1.4rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.logo-de {
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(0,0,0,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  border-radius: 4px;
  background: rgba(0,0,0,0.1);
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO SLIDER
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #111;
  line-height: 0;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide { flex: 0 0 100%; }

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-nav {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  gap: 10px;
  z-index: 10;
  line-height: normal;
}

.slide-btn {
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.slide-btn:hover { background: rgba(212,175,55,0.85); color: var(--dark); }

/* ============================
   REVIEWS SECTION
   ============================ */
.reviews-section {
  background: #fff;
  padding: 52px 0 44px;
}

.brand-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.reviewer-info strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviewer-info time {
  font-size: 0.73rem;
  color: #888;
}

.google-badge { flex-shrink: 0; }

.review-stars {
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
}

/* Brand tagline */
.brand-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
}

/* ============================
   ABOUT / EMPRESA
   ============================ */
.about-section {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid #f0f0f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-img-col {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-col:hover .about-img { transform: scale(1.03); }

.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 20px 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.about-img-overlay span:first-child { font-size: 1.6rem; }

.about-img-overlay div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-img-overlay strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.about-img-overlay small {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.8);
}

.about-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-desc strong { color: var(--dark); font-weight: 600; }

.about-list {
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-list li {
  font-size: 0.9rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--light-gray);
  border-radius: 8px;
  padding: 16px;
}

.astat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.astat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.astat span {
  font-size: 0.72rem;
  color: #777;
  font-weight: 500;
}

/* ============================
   SERVICES
   ============================ */
.services-section {
  background: #fff;
  padding: 20px 0 60px;
  border-top: 1px solid #f0f0f0;
}

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

.svc-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}

.svc-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.11);
  transform: translateY(-4px);
}

.svc-img-wrap {
  overflow: hidden;
  height: 200px;
}

.svc-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-img-wrap img { transform: scale(1.05); }

.svc-body {
  padding: 20px 20px 12px;
  flex: 1;
}

.svc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-desc {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.65;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: #666;
  line-height: 1.65;
}

.svc-list li {
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.svc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold, #d4a017);
  font-weight: 700;
}

.svc-actions {
  display: flex;
  gap: 10px;
  padding: 12px 20px 20px;
}

.btn-whats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-whats:hover { background: var(--green-hover); }

.btn-mais {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-mais:hover { background: #333; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--gold);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-contact-list,
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-contact-list li,
.footer-links-list li {
  font-size: 0.85rem;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-contact-list a,
.footer-links-list a {
  color: #2a2a2a;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-contact-list a:hover,
.footer-links-list a:hover {
  color: var(--dark);
  text-decoration: underline;
}

/* Footer logo bar */
.footer-logo-bar {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 20px 0;
}

.footer-logo-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.5rem;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.footer-logo-text em {
  font-style: normal;
  font-weight: 600;
}

/* Footer copyright bar */
.footer-copyright {
  background: rgba(0,0,0,0.15);
  padding: 12px 0;
}

.footer-copyright p {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.65);
  text-align: center;
}

.footer-copyright a {
  color: rgba(0,0,0,0.75);
  transition: color 0.2s;
}

.footer-copyright a:hover { color: var(--dark); }

/* ============================
   WHATSAPP FLOAT
   ============================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: ripple 2.2s ease-out infinite;
}

@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ============================
   MOBILE MENU OVERLAY
   ============================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--gold);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { width: 100%; padding: 12px 8px; font-size: 1rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
}

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

/* Tablet */
@media (max-width: 1024px) {
  .reviews-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
  .topbar-container { grid-template-columns: 1fr; gap: 8px; }
  .topbar-center, .topbar-right { align-items: flex-start; text-align: left; }

  .slide img { height: 280px; }

  .brand-heading { font-size: 1.7rem; }
  .brand-tagline { font-size: 1.05rem; }

  .reviews-row { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .about-img { height: 280px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}
