/* ============================================================
   CLICK IMAGEM — style.css
   Colors: Black #0a0a0a | Yellow #FFD101 | White #ffffff
   Fonts:  Barlow Condensed (headings) | Inter (body)
============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-black:   #0a0a0a;
  --clr-gray:    #111111;
  --clr-gray2:   #1c1c1c;
  --clr-yellow:  #FFD101;
  --clr-yellow2: #e6bc00;
  --clr-white:   #ffffff;
  --clr-muted:   #888888;
  --clr-wa:      #25D366;

  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;

  --section-pad: clamp(60px, 8vw, 100px);
  --container:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--clr-black);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── Utilities ── */
.yellow { color: var(--clr-yellow); }
.black  { color: var(--clr-black);  }

.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--yellow {
  background: var(--clr-yellow);
  color: var(--clr-black);
  border-color: var(--clr-yellow);
}
.btn--yellow:hover { background: var(--clr-yellow2); box-shadow: 0 8px 30px rgba(255,209,0,0.4); }

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }

.btn--black {
  background: var(--clr-black);
  color: var(--clr-yellow);
  border-color: var(--clr-black);
  font-size: 1rem;
}
.btn--black:hover { background: #111; box-shadow: 0 8px 30px rgba(0,0,0,0.5); }

.btn--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
  padding: 13px 32px;
  font-size: 1rem;
}
.btn--instagram:hover { opacity: 0.9; box-shadow: 0 8px 30px rgba(220,39,67,0.4); }

.btn--lg { padding: 15px 32px; font-size: 1.05rem; }

/* ── Section Commons ── */
.section { padding: var(--section-pad) 0; }

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-yellow);
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay helpers */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo-img { width: 50px; height: auto; }
.navbar__logo-text {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--clr-white);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links {
  display: flex;
  gap: 28px;
}
.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-yellow);
  transition: width var(--transition);
}
.navbar__links a:hover { color: var(--clr-yellow); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta { font-size: 0.85rem; padding: 9px 18px; }
.navbar__menu-logo { display: none; }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.navbar__toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.80) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Floating logo animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.hero__logo-wrap { animation: float 3.5s ease-in-out infinite; }
.hero__logo-icon { width: clamp(250px, 15vw, 130px); height: auto; filter: drop-shadow(0 0 24px rgba(255,209,0,0.5)); }

.hero__title {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* Scroll hint */
@keyframes bounce {
  0%, 100% { transform: translateY(10px); opacity: 0.7; }
  50%       { transform: translateY(5px); opacity: 1; }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transform: rotate(45deg);
  
}
.hero__scroll-hint span {
  display: block;
  width: 24px; height: 24px;
  border-right: 2px solid var(--clr-yellow);
  border-bottom: 2px solid var(--clr-yellow);
  transform: rotate(45deg);
  animation: bounce 1.4s ease-in-out infinite;
}


/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--clr-black); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  /* Center the last odd card */
  justify-items: center;
}

.service-card {
  background: var(--clr-gray2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Imagem de fundo — camada por baixo do overlay */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.55s ease, opacity 0.3s ease;
  opacity: 0.4;
}

/* Overlay escuro para legibilidade */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.82) 100%);
}

/* Conteúdo acima do overlay */
.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  border-color: var(--clr-yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,209,0,0.12);
}

.service-card:hover::before {
  transform: scale(1.07);
  opacity: 0.55;
}

/* ── Imagens individuais de cada card (substitua pelas suas fotos) ── */
.services__grid .service-card:nth-child(1)::before {
  background-image: url('https://images.unsplash.com/photo-1572635148619-a66d0ddbc9bc?q=80&w=1470&auto=format&fit=crop');
}
.services__grid .service-card:nth-child(2)::before {
  background-image: url('https://images.unsplash.com/photo-1713450605268-5f8ba67f5b55?q=80&w=880&auto=format&fit=crop');
}
.services__grid .service-card:nth-child(3)::before {
  background-image: url('https://images.unsplash.com/photo-1537813281636-9a12ad03f637?q=80&w=1632&auto=format&fit=crop');
}
.services__grid .service-card:nth-child(4)::before {
  background-image: url('https://images.unsplash.com/photo-1513303876354-9d34f07fc54f?q=80&w=687&auto=format&fit=crop');
}
.services__grid .service-card:nth-child(5)::before {
  background-image: url('https://images.unsplash.com/photo-1708449530051-6b3ffb524f8f?q=80&w=687&auto=format&fit=crop');
}
.services__grid .service-card:nth-child(6)::before {
  background-image: url('https://images.unsplash.com/photo-1747927565413-df362b285b58?q=80&w=687&auto=format&fit=crop');
}

.service-card__icon { font-size: 3rem; line-height: 1; }

.service-card__title {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--clr-white);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-yellow);
  transition: gap var(--transition);
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.service-card__link:hover { gap: 10px; }


/* ============================================================
   DIFERENCIAIS
============================================================ */
.diferenciais { background: var(--clr-gray); }

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.diferencial-item { padding: 16px; }

.diferencial-item__number {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--clr-yellow);
  line-height: 1;
}

.diferencial-item__label {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 8px 0 12px;
}

.diferencial-item__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-inline: auto;
}


/* ============================================================
   CLIENTS CAROUSEL
============================================================ */
.clients { background: var(--clr-black); overflow: hidden; }

.clients__track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 24px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}

.clients__track:hover { animation-play-state: paused; }

.clients__logo-item {
  display: block;
  width: 160px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color var(--transition);
  line-height: 0;
}
.clients__logo-item:hover {
  border-color: var(--clr-yellow);
}
.clients__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}
.clients__logo-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}


/* ============================================================
   INSTAGRAM
============================================================ */
.instagram { background: var(--clr-gray); }

/* Grade de embeds oficiais do Instagram */
.instagram__embeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  align-items: start;
}

/* Força o blockquote/iframe do Instagram a ocupar toda a coluna */
.instagram__embeds .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: var(--radius) !important;
}

.instagram__cta { text-align: center; }


/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: var(--clr-yellow);
  padding: var(--section-pad) 0;
}

.cta-section__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-section__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--clr-black);
  line-height: 1.1;
}

.cta-section__sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
  max-width: 500px;
}


/* ============================================================
   FOOTER
============================================================ */
.footer { background: #060606; padding: 60px 0 0; }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo-img { width: 40px; }

.footer__desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 240px;
}

.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--clr-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer__social a:hover { color: var(--clr-yellow); border-color: var(--clr-yellow); background: rgba(255,209,0,0.07); }

.footer__nav-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: 18px;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.88rem;
  color: var(--clr-muted);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--clr-yellow); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--clr-muted);
}
.footer__contact i { color: var(--clr-yellow); width: 16px; text-align: center; }
.footer__contact a { color: var(--clr-muted); transition: color var(--transition); }
.footer__contact a:hover { color: var(--clr-yellow); }

.footer__bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}


/* ============================================================
   WHATSAPP FLOAT
============================================================ */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--clr-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr-wa);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }


/* ============================================================
   LIGHTBOX GALERIA
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
}
.lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(92vw, 460px);
  max-height: 96vh;
  gap: 16px;
}
.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}
.lightbox__close:hover { color: var(--clr-yellow); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--clr-white);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}
.lightbox__nav:hover { background: var(--clr-yellow); color: var(--clr-black); }
.lightbox__nav--prev { left: -56px; }
.lightbox__nav--next { right: -56px; }

.lightbox__main {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 64vh;
  border-radius: 12px;
  overflow: hidden;
  background: var(--clr-black);
}
.lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}
.lightbox__img.fading { opacity: 0; }

.lightbox__footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox__title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.lightbox__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.lightbox__thumb {
  width: 80px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  flex-shrink: 0;
}
.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox__thumb:hover { border-color: rgba(255,255,255,0.4); }
.lightbox__thumb.active { border-color: var(--clr-yellow); }

@media (max-width: 767px) {
  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }
  .lightbox__thumb { width: 56px; height: 40px; }
  .lightbox__close { top: -40px; }
}


/* ============================================================
   RESPONSIVE — TABLET (≥640px)
============================================================ */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); justify-items: stretch; }
  .service-card { max-width: unset; }
  /* Center last card when odd */
  .services__grid .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 340px;
    margin-inline: auto;
  }
  .instagram__embeds { gap: 20px; }
}


/* ============================================================
   RESPONSIVE — DESKTOP (≥1024px)
============================================================ */
@media (min-width: 1024px) {
  /* 6 virtual columns so each card spans 2 → same visual width as 3-col */
  .services__grid { grid-template-columns: repeat(6, 1fr); }
  .services__grid .service-card { grid-column: span 2; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
============================================================ */
@media (max-width: 767px) {

  /* Nav */
  .navbar__toggle { display: flex; }

  .navbar__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 100px 36px 40px;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .navbar__menu.open { right: 0; }

  .navbar__links {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
  }
  .navbar__links a { font-size: 1.8rem; text-align: right; }
  .navbar__cta { width: 100%; justify-content: center; }
  .navbar__menu-logo {
    display: block;
    width: 80px;
    opacity: 0.55;
    align-self: center;
    margin-top: auto;
    pointer-events: none;
  }

  /* Hero */
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Services — 2 cards por linha */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .services__grid .service-card {
    padding: 24px 14px;
    max-width: unset;
  }
  .services__grid .service-card__icon { font-size: 2.2rem; }
  .services__grid .service-card__title { font-size: 1.25rem; }

  /* Diferenciais */
  .diferenciais__grid { grid-template-columns: 1fr; gap: 24px; }

  /* Instagram */
  .instagram__embeds {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  /* Footer — brand full width, contato + nav lado a lado */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { order: 1; }
  .footer__nav { order: 2; }
  .footer__desc { max-width: 100%; }

  /* WhatsApp button */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2.8rem; }
  .navbar__logo-text { font-size: 1.2rem; }
}


/* ============================================================
   ENDEREÇO / LOCALIZAÇÃO
============================================================ */
.endereco { background: var(--clr-gray); }

.endereco__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.endereco__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.endereco__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.endereco__detail i {
  font-size: 1.4rem;
  color: var(--clr-yellow);
  margin-top: 3px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.endereco__detail strong {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  display: block;
  margin-bottom: 6px;
}

.endereco__detail p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.endereco__detail a {
  color: var(--clr-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.endereco__detail a:hover { color: var(--clr-yellow); }

.endereco__map iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

/* Responsive endereco */
@media (max-width: 767px) {
  .endereco__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .endereco__map iframe { min-height: 280px; }
}
