/* ============================================================
   NOGAM CUSTOMS — SHARED STYLESHEET
   nogamcustoms.pt
   ============================================================ */

:root {
  --yellow:     #FFDD00;
  --yellow-dk:  #e6c800;
  --bg-deep:    #0d1017;
  --bg-main:    #12151c;
  --bg-sect:    #1a1d28;
  --bg-card:    #1e2233;
  --white:      #ffffff;
  --muted:      #9aa0b8;
  --dim:        #6b7280;
  --green:      #61CE70;
  --red:        #C40E0E;
  --font:       'Roboto', sans-serif;
  --font-slab:  'Roboto Slab', serif;
  --max-w:      1200px;
  --r:          4px;
  --ease:       0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.mt { margin-top: 16px; }

/* UTILITIES */
.tag    { display: inline-block; color: var(--yellow); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 10px; }
.divider { width: 44px; height: 4px; background: var(--yellow); display: block; margin: 12px 0 28px; }
.btn    { display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px; font-family: var(--font); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; border: 2px solid var(--yellow); color: var(--yellow); background: transparent; cursor: pointer; transition: var(--ease); border-radius: var(--r); text-decoration: none; }
.btn:hover { background: var(--yellow); color: var(--bg-deep); }
.section-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.75; max-width: 720px; margin-bottom: 52px; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: box-shadow var(--ease);
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.nav { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; padding: 14px 28px; }
.nav-logo img { height: 58px; width: auto; }
.nav-body { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--white); padding: 4px 0; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.has-drop { position: relative; }
.drop-btn { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 0.9rem; font-weight: 500; color: var(--white); background: none; border: none; font-family: var(--font); transition: var(--ease); }
.drop-btn i { font-size: 0.65rem; transition: transform var(--ease); }
.drop-btn:hover { color: var(--yellow); }
.drop-menu { position: absolute; top: calc(100% + 14px); left: 0; background: var(--bg-sect); border: 1px solid rgba(255,221,0,0.12); border-radius: var(--r); min-width: 230px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: var(--ease); z-index: 500; }
.has-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.has-drop:hover .drop-btn i { transform: rotate(180deg); }
.drop-menu a { display: block; padding: 11px 20px; font-size: 0.875rem; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.04); transition: var(--ease); }
.drop-menu li:last-child a { border-bottom: none; }
.drop-menu a:hover { color: var(--yellow); background: rgba(255,221,0,0.06); padding-left: 28px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--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); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 148px 28px 80px;
  background: linear-gradient(135deg, #0d1017 0%, #141829 55%, #0a0d14 100%);
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,221,0,0.04) 0%, transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--dim); margin-bottom: 28px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb i { font-size: 0.6rem; }
.hero-flex { display: flex; gap: 36px; align-items: flex-start; }
.hero-ico-lg { flex-shrink: 0; width: 80px; height: 80px; background: rgba(255,221,0,0.08); border: 1px solid rgba(255,221,0,0.15); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-top: 4px; }
.hero-ico-lg img { width: 48px; height: 48px; object-fit: contain; }
.page-hero h1 { font-size: clamp(1.5rem, 3.2vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 0; }
.hero-desc { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 680px; margin-bottom: 32px; }

/* ============================================================
   DETAILS SECTION
   ============================================================ */
.details-sec { padding: 88px 28px; background: var(--bg-main); }
.detail-block { margin-bottom: 64px; }
.detail-block:last-child { margin-bottom: 0; }
.detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.detail-ico { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bg-deep); font-size: 1rem; flex-shrink: 0; }
.detail-head h2 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; }
.detail-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; max-width: 860px; }

/* Check list */
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 10px; }
.check-list li i { color: var(--green); font-size: 0.75rem; margin-top: 5px; flex-shrink: 0; }
.check-list li strong { color: var(--white); }

/* Mini cards */
.cards-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.card-mini { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--r); padding: 24px 20px; transition: border-color var(--ease); }
.card-mini:hover { border-color: rgba(255,221,0,0.2); }
.card-mini > i { font-size: 1.4rem; color: var(--yellow); margin-bottom: 12px; display: block; }
.card-mini h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.card-mini p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* Brand grid */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.brand-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--r); padding: 18px 20px; }
.brand-item strong { display: block; color: var(--yellow); font-size: 0.9rem; margin-bottom: 4px; }
.brand-item span { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }

/* Brand tags */
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.brand-tags span { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; padding: 5px 14px; font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-sec { padding: 80px 28px; background: var(--bg-sect); }
.process-sec .tag, .process-sec h2 { display: block; }
.process-sec h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; text-transform: uppercase; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.step { position: relative; }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(255,221,0,0.08); line-height: 1; margin-bottom: 8px; font-family: var(--font-slab); }
.step-ico { width: 48px; height: 48px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bg-deep); font-size: 1rem; margin-bottom: 16px; }
.step-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.step-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-sec { padding: 80px 28px; background: var(--bg-main); }
.faq-sec h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; text-transform: uppercase; }
.faq-list { max-width: 800px; margin-top: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; background: none; border: none; color: var(--white); font-family: var(--font); font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left; gap: 16px; transition: color var(--ease); }
.faq-q:hover { color: var(--yellow); }
.faq-q i { flex-shrink: 0; transition: transform var(--ease); font-size: 0.75rem; color: var(--yellow); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 80px 28px; background: linear-gradient(135deg, #1a1d28 0%, #0d1017 100%); text-align: center; }
.cta-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--muted); }
.cta-divider { width: 44px; height: 2px; background: var(--dim); margin: 12px auto 16px; }
.cta-phone { font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.cta-sub { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--yellow); margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #080a10; padding: 64px 28px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.foot-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.foot-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; max-width: 290px; margin-bottom: 24px; }
.foot-brand p strong { color: var(--white); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--muted); transition: var(--ease); }
.socials a:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,221,0,0.07); }
.foot-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px; }
.foot-col address { color: var(--muted); font-size: 0.875rem; line-height: 1.85; font-style: normal; }
.foot-col ul li + li { margin-top: 4px; }
.foot-col ul a { color: var(--muted); font-size: 0.875rem; transition: var(--ease); }
.foot-col ul a:hover { color: var(--yellow); padding-left: 5px; }
.foot-bar { border-top: 1px solid rgba(255,255,255,0.04); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.foot-bar p { color: var(--dim); font-size: 0.8rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.contact-info h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; text-transform: uppercase; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.c-ico { flex-shrink: 0; width: 44px; height: 44px; background: rgba(255,221,0,0.1); border: 1px solid rgba(255,221,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 0.95rem; }
.c-text strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.c-text span, .c-text a { color: var(--muted); font-size: 0.875rem; }
.c-text a:hover { color: var(--yellow); }
.contact-form { background: var(--bg-sect); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--r); padding: 40px 36px; }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); padding: 12px 16px; color: var(--white); font-family: var(--font); font-size: 0.9rem; transition: border-color var(--ease); }
.form-group input:focus, .form-group select, .form-group textarea:focus { outline: none; border-color: rgba(255,221,0,0.4); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--bg-card); color: var(--white); }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }
.btn-outline-muted { border-color: rgba(255,255,255,0.15); color: var(--muted); }
.btn-outline-muted:hover { border-color: var(--yellow); color: var(--yellow); background: transparent; }
.form-actions { display: flex; flex-direction: column; gap: 0; }
.whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: #25D366; border: none; border-radius: var(--r); color: white; font-family: var(--font); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: var(--ease); margin-top: 12px; }
.whatsapp-btn:hover { background: #1ebe5d; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--dim); font-size: 0.8rem; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.06); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-mini { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-body { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--bg-sect); flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 0; transform: translateX(-100%); transition: transform var(--ease); overflow-y: auto; z-index: 9998; }
  .nav-body.open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links > li > a, .drop-btn { padding: 16px 0; font-size: 1rem; }
  .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(0,0,0,0.2); border: none; padding-left: 16px; display: none; }
  .has-drop.open .drop-menu { display: block; }
  .nav-body .btn { margin-top: 24px; }
  .hero-flex { flex-direction: column; gap: 20px; }
  .cards-mini { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bar { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOME PAGE — ALIASES (maps legacy var names to shared tokens)
   ============================================================ */
:root {
  --text-white:  var(--white);
  --text-muted:  var(--muted);
  --text-dim:    var(--dim);
  --bg-section:  var(--bg-sect);
  --font-main:   var(--font);
  --radius:      var(--r);
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 130px 28px 60px;
  background: linear-gradient(135deg, #0d1017 0%, #141829 55%, #0a0d14 100%);
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden; position: relative;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(255,221,0,0.04) 0%, transparent 60%); pointer-events: none; }
.hero-text { text-align: center; max-width: 820px; position: relative; z-index: 1; }
.hero-text h1 { font-family: var(--font); font-size: clamp(1.75rem, 3.8vw, 3rem); font-weight: 700; line-height: 1.22; margin-bottom: 22px; }
.hero-text p { font-size: 1rem; color: var(--muted); max-width: 640px; margin: 0 auto 36px; line-height: 1.75; }
.hero-text p a { color: var(--white); font-weight: 600; }
.hero-text p a:hover { color: var(--yellow); }
.hero-car { position: relative; z-index: 1; margin-top: 48px; max-width: 800px; width: 100%; }
.hero-car img { width: 100%; filter: drop-shadow(0 24px 64px rgba(0,0,0,0.7)); }

/* ============================================================
   HOME — INFO BAR
   ============================================================ */
.info-bar { background: var(--bg-sect); padding: 52px 28px; }
.info-bar .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.info-cell { padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.05); }
.info-cell:last-child { border-right: none; }
.info-icon { width: 50px; height: 50px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--bg-deep); margin-bottom: 18px; }
.info-cell h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.info-cell p, .info-cell address { color: var(--muted); font-size: 0.875rem; line-height: 1.65; font-style: normal; }
.info-cell ul li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.875rem; margin-bottom: 5px; }
.info-cell ul li .fa-check { color: var(--green); font-size: 0.7rem; }
.info-cell ul li .fa-xmark  { color: var(--red);   font-size: 0.7rem; }
.info-phone { font-size: 1.55rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.info-cta { display: inline-flex; align-items: center; gap: 7px; color: var(--yellow); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 10px; transition: var(--ease); }
.info-cta i { font-size: 0.75rem; }
.info-cta:hover { gap: 12px; }

/* ============================================================
   HOME — WHAT WE DO
   ============================================================ */
.what-we-do { padding: 88px 28px; background: var(--bg-main); }
.what-we-do h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; text-transform: uppercase; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.svc-card img { width: 50px; height: 50px; object-fit: contain; margin-bottom: 18px; }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--yellow); margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
.svc-badge { font-size: 0.68rem; font-weight: 400; color: var(--dim); margin-left: 6px; }

/* ============================================================
   HOME — WHY US (parallax)
   ============================================================ */
.why-us { position: relative; padding: 88px 28px; background-image: url('https://nogamgroup.com/nogamcustoms/wp-content/uploads/2020/06/car-repair-engine-tnfd.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.why-us::before { content: ''; position: absolute; inset: 0; background: rgba(10,12,20,0.87); }
.why-us .container { position: relative; z-index: 1; }
.why-us h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; text-transform: uppercase; }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.feat { display: flex; gap: 20px; align-items: flex-start; }
.feat-ico { flex-shrink: 0; width: 50px; height: 50px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--bg-deep); }
.feat-body h3 { font-size: 1rem; font-weight: 700; color: var(--yellow); margin-bottom: 8px; }
.feat-body p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ============================================================
   HOME — ABOUT
   ============================================================ */
.about { padding: 88px 28px; background: var(--bg-main); }
.about h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; line-height: 1.15; margin-bottom: 0; }
.about-copy p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; max-width: 860px; }
.about-copy p strong { color: var(--white); font-weight: 600; }

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials { padding: 88px 28px; background: var(--bg-sect); }
.testimonials h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; text-transform: uppercase; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 44px; }
.review { background: var(--bg-card); padding: 36px 32px 28px; border-radius: var(--r); border: 1px solid rgba(255,255,255,0.04); position: relative; }
.review::before { content: '\201C'; font-family: Georgia, serif; font-size: 5.5rem; color: var(--yellow); opacity: 0.5; position: absolute; top: 6px; left: 22px; line-height: 1; }
.review-body { color: var(--muted); font-size: 0.9rem; line-height: 1.75; padding-top: 28px; margin-bottom: 24px; }
.review-foot { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 18px; }
.review-foot img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-foot strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--yellow); }
.review-foot span { font-size: 0.78rem; color: var(--dim); }
.rating-block { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stars { color: var(--yellow); font-size: 1.5rem; letter-spacing: 3px; }
.rating-src { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; }
.rating-src i { color: #4285F4; }

/* ============================================================
   SERVICOS PAGE — SERVICES HUB GRID
   ============================================================ */
.services-sec { padding: 88px 28px; background: var(--bg-main); }
.services-sec h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; text-transform: uppercase; }
.svc-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.svc-full-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--r); padding: 36px 32px; display: flex; gap: 24px; align-items: flex-start; transition: border-color var(--ease), transform var(--ease); }
.svc-full-card:hover { border-color: rgba(255,221,0,0.2); transform: translateY(-3px); }
.svc-ico-wrap { flex-shrink: 0; width: 60px; height: 60px; background: rgba(255,221,0,0.08); border: 1px solid rgba(255,221,0,0.15); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.svc-ico-wrap img { width: 36px; height: 36px; object-fit: contain; }
.svc-full-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--yellow); margin-bottom: 10px; }
.svc-full-body p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: var(--ease); }
.svc-link i { font-size: 0.65rem; }
.svc-link:hover { gap: 10px; }

/* ============================================================
   SERVICOS PAGE — LOCATION
   ============================================================ */
.location-sec { padding: 88px 28px; background: var(--bg-sect); }
.location-sec h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; text-transform: uppercase; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; }
.location-info strong { color: var(--white); }
.location-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.loc-icon { flex-shrink: 0; width: 42px; height: 42px; background: rgba(255,221,0,0.1); border: 1px solid rgba(255,221,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 0.9rem; }
.loc-text strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.loc-text span { color: var(--muted); font-size: 0.85rem; }
.areas-list { margin-top: 8px; }
.areas-list h3 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 14px; }
.area-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.area-item strong { color: var(--yellow); font-size: 0.875rem; min-width: 90px; }
.area-item span { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.map-embed iframe { width: 100%; height: 360px; display: block; border: 0; filter: grayscale(30%) invert(90%) hue-rotate(180deg); }

/* ============================================================
   ADDITIONAL RESPONSIVE (home + servicos)
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .info-bar .container { grid-template-columns: 1fr; }
  .info-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .info-cell:last-child { border-bottom: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .why-us { background-attachment: scroll; }
}
@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; }
}
