
:root {
  --amarelo: #f4ad17;
  --laranja: #f6821f;
  --verde: #4db64a;
  --marrom: #783f2e;
  --marrom-escuro: #18100e;
  --creme: #faf6ca;
  --branco: #ffffff;
  --sombra: 0 8px 32px rgba(24,16,14,0.12);
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }
section[id] { scroll-margin-top: 110px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--marrom-escuro);
  overflow-x: hidden;
}

/* ========= HEADER ========= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--branco);
  box-shadow: 0 2px 20px rgba(244,173,23,0.2);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-sunflower {
  width: 68px;
  height: 68px;
  background: transparent;
  display: block;
}

.logo-text {
  line-height: 1.1;
}

.logo-text .centro {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--marrom);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text .girassol {
  font-family: 'Fredoka One', cursive;
  font-size: 32px;
  color: var(--amarelo);
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  color: var(--marrom);
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.01em;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--amarelo);
  border-radius: 2px;
  transition: width 0.3s;
}

nav a:hover { color: var(--laranja); }
nav a:hover::after { width: 100%; }

.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 16px;
  padding-left: 24px;
  border-left: 2px solid #f0e8d0;
}

.nav-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  position: relative;
  z-index: 1001;
  pointer-events: all;
  cursor: pointer;
}

.nav-social a.insta { background: linear-gradient(135deg, #f6821f, #e1306c); }
.nav-social a.whats { background: #25D366; }
.nav-social a:hover { transform: scale(1.15); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--marrom-escuro);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========= HERO ========= */
@keyframes hFadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes hSlideIn  { from{opacity:0;transform:translateX(48px)} to{opacity:1;transform:translateX(0)} }
@keyframes shineLine { 0%{opacity:0;transform:translateX(-100%) skewX(-20deg)} 50%{opacity:.55} 100%{opacity:0;transform:translateX(300%) skewX(-20deg)} }
@keyframes pulseRing { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.75);opacity:0} }
@keyframes underlineIn { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes floatDot  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ========= FLOATING WHATSAPP ========= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.18);
  z-index: 1500;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(37,211,102,0.55), 0 6px 16px rgba(0,0,0,0.22);
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: pulseRing 2.4s cubic-bezier(0,0,.2,1) infinite;
  pointer-events: none;
}
.whatsapp-float::after { animation-delay: 1.2s; }

@media (max-width: 600px) {
  .whatsapp-float { width: 56px; height: 56px; right: 18px; bottom: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

#home {
  position: relative;
  min-height: calc(100vh - 95px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #faf6ca 0%, #fff8e1 100%);
  padding: 50px 0 50px;
}

/* Decorative dots on hero bg */
.hero-doodles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(246,130,31,0.18) 2px, transparent 3px),
    radial-gradient(circle, rgba(77,182,74,0.16) 2px, transparent 3px);
  background-size: 60px 60px, 90px 90px;
  background-position: 0 0, 30px 30px;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  justify-self: end;
  opacity: 1;
  margin-right: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f6821f 0%, #f4ad17 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 6px 18px rgba(246,130,31,0.30);
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  color: #18100e;
  line-height: 1.04;
  margin: 0 0 26px;
  letter-spacing: -0.015em;
}
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .accent { color: #f6821f; }

.hero-subtitle {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  color: #6b5244;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 520px;
}

.hero-cta-wrap {
  position: relative;
  display: inline-block;
}
.hero-pulse-ring {
  position: absolute; inset: -6px;
  border-radius: 100px;
  border: 2px solid rgba(37,211,102,.48);
  animation: pulseRing 2.4s cubic-bezier(0,0,.2,1) infinite 1.8s;
  pointer-events: none;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.hero-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 100%;
  background: rgba(255,255,255,.3);
  animation: shineLine 3.5s ease-in-out infinite 2.2s;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37,211,102,.55);
}

/* === RIGHT: Circular photo === */
.hero-photo-wrap {
  position: relative;
  justify-self: start;
  width: min(620px, 100%);
  aspect-ratio: 1;
  opacity: 1;
}

/* Decorative ring */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 2px dashed #f4ad17;
  opacity: 0.6;
  animation: heroSpin 35s linear infinite;
}

/* Soft offset disc behind */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6821f, #f4ad17);
  transform: translate(18px, 18px);
  z-index: 0;
  opacity: 0.95;
}

.hero-photo-circle {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24,16,14,0.22);
  border: 8px solid #ffffff;
  background-size: cover;
  background-position: center 30%;
}

/* Floating mini-circles (decorative confetti) */
.hero-photo-wrap .mini {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(24,16,14,0.18);
  animation: floatDot 5s ease-in-out infinite;
}
.hero-photo-wrap .mini.m1 {
  top: -10px; right: 18%;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #4db64a, #3da33a);
  animation-delay: 0s;
}
.hero-photo-wrap .mini.m2 {
  bottom: 10%; right: -16px;
  width: 86px; height: 86px;
  background: linear-gradient(135deg, #f4ad17, #f6821f);
  animation-delay: 1.2s;
}
.hero-photo-wrap .mini.m3 {
  bottom: -8px; left: 18%;
  width: 48px; height: 48px;
  background: #ffffff;
  border: 3px solid #f4ad17;
  animation-delay: 2.4s;
}
.hero-photo-wrap .mini.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

@keyframes heroSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* hide legacy slideshow / overlay / alt-hero pieces */
.hero-slides,.hero-overlay,.hero-tint,.hero-dots-nav,.hero-scroll,
.hero-bg-photo,.hero-bg-overlay,.hero-wave-top,.hero-wave-bottom,
.hero-confetti,.hero-card,.hero-card-icon,.hero-blob,
.hero-photo,.hero-stats,.hero-stat-divider,.hero-photo-badge,
.hero-cta-secondary,.hero-left,.hero-right,.hero-ring,
.hero-ring-sm,.hero-stripe,.hero-photo-main,.hero-blend,.hero-vignette,
.h-dot,.hero-bg,.hero-img-right,.hero-stats-card,.hero-right-blend,
.hero-right-overlay,.hero-petal,.hero-dots,.hero-left-bg,
.hero-left-glow,.hero-left-circle { display:none!important; }

@media(max-width:960px){
  #home{ min-height: auto; padding: 70px 0 60px; }
  .hero-inner{ grid-template-columns: 1fr; gap: 36px; padding: 0 6%; }
  .hero-content{
    max-width: none;
    text-align: center;
    margin: 0 auto;
    justify-self: center;
    margin-right: 0;
  }
  .hero-content .hero-badge{ margin-left: auto; margin-right: auto; }
  .hero-subtitle{ margin-left: auto; margin-right: auto; }
  .hero-title{ font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-photo-wrap{
    justify-self: center;
    width: min(420px, 92%);
  }
  .hero-photo-wrap::before { inset: -14px; }
  .hero-photo-wrap::after { transform: translate(12px, 12px); }
  .hero-photo-wrap .mini.m1{ width: 50px; height: 50px; }
  .hero-photo-wrap .mini.m2{ width: 64px; height: 64px; right: -10px; }
  .hero-photo-wrap .mini.m3{ width: 38px; height: 38px; }
  .hero-photo-wrap .mini.icon{ font-size: 20px; }
}
@media(max-width:540px){
  .hero-title{ font-size: clamp(1.8rem, 11vw, 2.6rem); white-space: normal; }
  .hero-title .line{ white-space: normal; }
  .hero-photo-wrap{ width: min(340px, 88%); }
  .hero-cta{ font-size: 0.95rem; padding: 14px 26px; }
}

/* ========= WAVE DIVIDERS ========= */
section { position: relative; }
.section-wave { display: none !important; }
.legacy-wave-junk {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media(max-width:768px){
  .section-wave { height: 40px; }
}

/* ========= SECTIONS COMMON ========= */
section { padding: 90px 5%; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--creme);
  color: var(--marrom);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--marrom-escuro);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title span { color: var(--laranja); }

.section-desc {
  font-size: 1.05rem;
  color: #5a4840;
  max-width: 560px;
  line-height: 1.7;
}

/* ========= OFERECEMOS ========= */
#oferecemos {
  background: var(--creme);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(24,16,14,0.15);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.card-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--marrom-escuro);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.9rem;
  color: #6b5244;
  line-height: 1.6;
}

/* ========= COUNTERS ========= */
#numeros {
  background: linear-gradient(135deg, var(--marrom-escuro) 0%, var(--marrom) 100%);
  padding: 80px 5%;
  text-align: center;
}

.counters-header {
  margin-bottom: 60px;
}

.counters-header .section-title { color: var(--branco); }
.counters-header .section-title span { color: var(--amarelo); }
.counters-header .section-tag { background: rgba(255,255,255,0.1); color: var(--creme); }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.counter-item {
  padding: 40px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.counter-item:hover { background: rgba(255,255,255,0.1); }

.counter-number {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--amarelo);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-prefix {
  font-size: 0.7em;
  vertical-align: top;
  margin-top: 0.2em;
  display: inline-block;
}

.counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.counter-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }

/* ========= POR QUE GIRASSOL ========= */
#diferenciais {
  background: var(--branco);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.diferencial-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 2px solid #f0e8d0;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.diferencial-card:nth-child(1)::before { background: var(--amarelo); }
.diferencial-card:nth-child(2)::before { background: var(--verde); }
.diferencial-card:nth-child(3)::before { background: var(--laranja); }
.diferencial-card:nth-child(4)::before { background: var(--marrom); }
.diferencial-card:nth-child(5)::before { background: var(--amarelo); }
.diferencial-card:nth-child(6)::before { background: var(--verde); }

.diferencial-card:hover {
  border-color: var(--amarelo);
  box-shadow: 0 12px 40px rgba(244,173,23,0.2);
  transform: translateY(-4px);
}

.dif-emoji { font-size: 2.4rem; margin-bottom: 16px; display: block; }

.dif-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--marrom-escuro);
  margin-bottom: 10px;
}

.dif-desc {
  font-size: 0.9rem;
  color: #6b5244;
  line-height: 1.65;
}

/* ========= ESTRUTURA ========= */
#estrutura {
  background: linear-gradient(180deg, var(--creme) 0%, #fff8e1 100%);
}

.estrutura-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 48px;
  gap: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(120,63,46,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ========= ONDE ESTAMOS ========= */
#localizacao {
  background: var(--branco);
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}

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

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

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--creme);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-text strong {
  display: block;
  font-weight: 800;
  color: var(--marrom-escuro);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.95rem;
  color: #6b5244;
  line-height: 1.6;
}

.info-text a {
  color: var(--laranja);
  text-decoration: none;
  font-weight: 700;
}

.map-placeholder {
  background: linear-gradient(135deg, #e8f5e9, #fff9e0);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #e0d9c5;
  height: 360px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.agendar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 18px 72px;
  border-radius: 100px;
  font-size: 1.08rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  min-width: 300px;
}

/* ========= FOOTER ========= */
footer {
  background: var(--marrom-escuro);
  color: rgba(255,255,255,0.75);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text .girassol { color: var(--amarelo); }
.footer-brand .logo-text .centro { color: rgba(255,255,255,0.6); }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--amarelo);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--amarelo); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--amarelo);
  text-decoration: none;
}

/* ========= ANIMATIONS ========= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= MOBILE ========= */
@media (max-width: 900px) {
  /* Header */
  header { height: 72px; padding: 0 5%; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--branco);
    padding: 24px 5%;
    gap: 20px;
    box-shadow: var(--sombra);
    z-index: 999;
  }
  nav.open .nav-links a { font-size: 18px; }
  .logo-sunflower { width: 50px; height: 50px; }
  .logo-text .centro { font-size: 10px; }
  .logo-text .girassol { font-size: 22px; }

  /* Sections */
  section { padding: 60px 5%; scroll-margin-top: 76px; }
  html { scroll-padding-top: 76px; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.3rem); }
  .section-desc { font-size: 0.97rem; }

  /* Quem somos: stack columns, photo on top */
  #quem-somos > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  #quem-somos > div > div:last-child { order: -1; }
  #quem-somos > div > div:last-child img {
    min-height: 240px !important;
    max-height: 320px;
  }
  /* About 4 boxes: 2x2 */
  #quem-somos [style*="repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Counters */
  .counters-grid { grid-template-columns: 1fr; }
  .counters-grid .counter-item { padding: 30px 18px; }
  .counter-emoji { font-size: 1.7rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item img { height: 220px; }

  /* Localização */
  .localizacao-grid { grid-template-columns: 1fr; gap: 30px; }
  .map-placeholder { min-height: 320px; }
  .map-placeholder iframe { width: 100%; min-height: 320px; }
  .info-item { gap: 14px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
  }
  .footer-brand,
  .footer-brand p {
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid .logo-area { justify-content: center; }
  .footer-col h4 { text-align: center; }
  .footer-col ul { padding: 0; list-style: none; }
  .footer-col li { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Floating WhatsApp smaller */
  .whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 580px) {
  section { padding: 50px 5%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item img { height: 200px; }
  .card-img { height: 180px; }
  .diferencial-card { padding: 26px 22px; }
  .dif-emoji { font-size: 2.4rem; }
  .section-tag { font-size: 11px; padding: 5px 12px; }
}
