/*
Theme Name: Multi-Satélite
Theme URI: https://multi-satelite.pt
Author: Multi-Satélite
Description: Tema profissional para empresa de instalação e assistência técnica em sistemas de televisão, videoporteiros e redes.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: multi-satelite
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --green-dark:    #1a5c35;
  --green-main:    #2a7a4b;
  --green-light:   #3aad6a;
  --green-accent:  #4cbb7a;
  --green-bg:      #eef7f2;
  --white:         #ffffff;
  --gray-light:    #f4f6f5;
  --gray-mid:      #e2e8e4;
  --gray-text:     #5a6b62;
  --text-dark:     #1a2620;
  --text-body:     #3d4d45;
	
  /* ALTERAÇÃO PRINCIPAL */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
	
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(26,92,53,0.10);
  --shadow-lg:     0 8px 48px rgba(26,92,53,0.16);
  --transition:    0.3s cubic-bezier(.4,0,.2,1);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
		  /* melhoria premium */
  letter-spacing: 0.2px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1rem; }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--gray { background: var(--gray-light); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__header h2 span { color: var(--green-main); }
.section__header p { color: var(--gray-text); font-size: 1.05rem; margin-top: 8px; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,92,53,0.25);
}
.btn--primary:hover {
  background: var(--green-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,53,0.30);
}
.btn--outline {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--gray-mid);
}
.btn--outline:hover {
  border-color: var(--green-main);
  color: var(--green-main);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--green-bg);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 32px;
}
.btn--whatsapp:hover { background: #1eb855; transform: translateY(-2px); }

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.nav-logo svg { width: 40px; height: 40px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-main);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
}
.nav-phone {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { background: var(--green-main) !important; }
.nav-phone::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4ed 0%, #dff0e7 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(232,244,237,0.97) 0%,
    rgba(232,244,237,0.92) 38%,
    rgba(232,244,237,0.55) 58%,
    rgba(232,244,237,0.0) 75%
  );
}
/* Container no hero não centra — fica à esquerda */
.hero > .container {
  width: 100%;
  max-width: 1160px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 48%;
  max-width: 520px;
  padding: 88px 0;
}
.hero-content h1 {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}
.hero-content h1 strong { color: var(--green-dark); font-style: italic; }
.hero-content p {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-bottom: 36px;
  max-width: 400px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   SERVICES CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  cursor: default;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--green-main);
}
.service-card__icon svg { width: 64px; height: 64px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.1rem; font-family: var(--font-heading); }
.service-card p { font-size: 0.93rem; color: var(--gray-text); margin: 0; line-height: 1.6; font-family: var(--font-body); }

/* ===========================
   BRANDS / PARCEIROS
=========================== */
.brands-section {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
}
.brands-section .section__header {
  margin-bottom: 40px;
}
.brands-section .section__header h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  font-family: var(--font-body);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 400px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .brand-item { padding: 14px 12px; min-height: 64px; }
  .brand-item img { max-height: 28px; max-width: 90px; }
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 80px;
  cursor: default;
}
.brand-item img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.brand-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-text);
  letter-spacing: 0.5px;
}

/* ===========================
   WORKS GALLERY (homepage)
=========================== */
.wg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wg-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-bg);
  cursor: default;
}
.wg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.wg-item:hover img { transform: scale(1.07); }
.wg-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,53,0.80) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.wg-item:hover .wg-item__overlay { opacity: 1; }
.wg-item__overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.wg-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 32px;
  background: var(--green-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--green-accent);
  color: var(--green-dark);
}
.wg-empty svg { margin: 0 auto 16px; color: var(--green-main); }
.wg-empty p { color: var(--gray-text); font-size: .9rem; margin: 0; }
.wg-empty code { background: white; padding: 2px 8px; border-radius: 4px; }

/* ===========================
   HOW IT WORKS
=========================== */
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-mid);
  position: relative;
}
.how-step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step__icon {
  width: 56px; height: 56px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 16px;
  color: var(--green-main);
}
.how-step h3 { font-size: 1rem; margin-bottom: 8px; }
.how-step p  { font-size: .88rem; color: var(--gray-text); margin: 0; line-height: 1.6; }
.how-step__arrow {
  font-size: 1.5rem;
  color: var(--green-accent);
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
}

/* ===========================
   WORKS / PORTFOLIO (page)
=========================== */
.works-section { padding: 80px 0; }
.works-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.works-text h2 { margin-bottom: 12px; }
.works-text > p { color: var(--gray-text); margin-bottom: 40px; }

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px; top: 44px; bottom: 0;
  width: 2px;
  background: var(--green-bg);
}
.step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step__body p { color: var(--gray-text); font-size: 0.93rem; margin: 0; }

.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.works-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}
.works-gallery img:hover { transform: scale(1.04); box-shadow: var(--shadow); }
.works-gallery-cta { grid-column: 1/-1; text-align: center; margin-top: 16px; }

/* ===========================
   INSTAGRAM
=========================== */
.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}
.instagram-block { padding: 60px; }
.instagram-block h2 { margin-bottom: 8px; }
.instagram-block h2 span { color: var(--green-main); }
.instagram-block > p { color: var(--gray-text); font-size: 0.93rem; margin-bottom: 24px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.instagram-grid img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
}
.instagram-grid img:hover { opacity: 0.85; transform: scale(1.05); }

.cta-block {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  text-align: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.cta-block p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #142b1e;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  gap: 56px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--green-accent); }

/* Brand col */
.footer-col--brand { padding-right: 16px; }
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img { max-height: 72px; width: auto; }

/* Social icons */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-main); color: white; }

/* Location badge */
.footer-loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,187,122,0.15);
  color: var(--green-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Contact list with icons */
.footer-contact-list { display: flex; flex-direction: column; gap: 10px !important; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-accent);
}
.footer-contact-list li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.footer-contact-list li a:hover { color: var(--green-accent); }
.footer-contact-list li em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--brand { grid-column: auto; }
}

/* ===========================
   PAGE: SERVIÇOS
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.services-full { padding: 80px 0; }
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-full-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-full-card__img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.service-full-card__body { padding: 28px; }
.service-full-card__body h3 { margin-bottom: 12px; }
.service-full-card__body p { color: var(--gray-text); font-size: 0.95rem; margin: 0; }
.service-full-card__icon-wrap {
  height: 200px;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-full-card__icon-wrap svg { width: 80px; height: 80px; color: var(--green-main); }

/* ===========================
   PAGE: TRABALHOS
=========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 0;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--gray-mid);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,53,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green-bg);
  color: var(--green-main);
  font-size: 0.9rem;
}
.portfolio-placeholder svg { width: 40px; height: 40px; opacity: 0.5; }

/* ===========================
   PAGE: ASSISTÊNCIA
=========================== */
.assistencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
}
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form > p { color: var(--gray-text); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(42,122,75,0.12);
}
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
  background: #fff8f8;
}
.field-error-msg {
  display: block;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 4px;
  font-weight: 600;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item svg {
  width: 20px; height: 20px;
  color: var(--green-main);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--gray-text); }
.contact-item span { display: block; font-size: 0.97rem; color: var(--text-dark); line-height: 1.7; }

.whatsapp-card {
  background: linear-gradient(135deg, #1a5c35, #2a7a4b);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--white);
}
.whatsapp-card h3 { color: var(--white); margin-bottom: 8px; }
.whatsapp-card p { color: rgba(255,255,255,0.8); font-size: 0.93rem; margin-bottom: 20px; }

/* ===========================
   LOCATIONS (assistência page)
=========================== */
.assistencia-section { padding: 60px 0 40px; }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location-card__map {
  width: 100%;
  height: 220px;
  background: var(--gray-mid);
}
.location-card__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.location-card__body { padding: 24px; }
.location-card__badge {
  display: inline-flex;
  align-items: center;
  background: var(--green-dark);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.location-card__body h3 { font-size: 1.1rem; margin-bottom: 16px; }

.location-info { display: flex; flex-direction: column; gap: 10px; }
.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.location-info li svg { flex-shrink: 0; margin-top: 3px; color: var(--green-main); }
.location-info li a { color: var(--text-dark); transition: color .2s; }
.location-info li a:hover { color: var(--green-main); }
.location-info li em { font-style: normal; font-size: .8rem; color: var(--gray-text); margin-left: 4px; }

@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
  .assistencia-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================
   PAGE: LOJA (coming soon)
=========================== */
.loja-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.loja-soon__icon { font-size: 80px; margin-bottom: 24px; }
.loja-soon h2 { margin-bottom: 16px; }
.loja-soon p { color: var(--gray-text); max-width: 480px; margin: 0 auto 32px; }

/* ===========================
   LIGHTBOX
=========================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===========================
   NOTIFICATIONS
=========================== */
.notification {
  position: fixed;
  top: 80px; right: 24px;
  background: var(--green-dark);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  font-weight: 600;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.notification.show { transform: translateX(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .works-inner { grid-template-columns: 1fr; gap: 40px; }
  .bottom-section { grid-template-columns: 1fr; }
  .cta-block { padding: 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .assistencia-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; width: 100%; gap: 4px; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .hero { min-height: 420px; }
  .wg-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { flex-direction: column; align-items: stretch; gap: 24px; }
  .how-step__arrow { display: none; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .instagram-block { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero > .container { justify-content: flex-start; }
  .hero-content { width: 100%; max-width: 100%; padding: 40px 0 280px; }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(232,244,237,0.95) 0%,
      rgba(232,244,237,0.85) 55%,
      rgba(232,244,237,0.1) 100%
    );
  }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .works-gallery { grid-template-columns: repeat(3, 1fr); }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.animate-up:nth-child(1) { animation-delay: 0.1s; }
.animate-up:nth-child(2) { animation-delay: 0.2s; }
.animate-up:nth-child(3) { animation-delay: 0.3s; }
.animate-up:nth-child(4) { animation-delay: 0.4s; }

/* Scroll reveal via JS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }