/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, sans-serif;
  background: #ffffff;
  color: #1f3024;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --green:        #2e8b57;
  --green-light:  #43a96a;
  --green-pale:   #e8f5ee;
  --green-dark:   #1a5c38;
  --green-footer: #122a1c;
  --wa:           #25d366;
  --wa-dark:      #1da851;
  --white:        #ffffff;
  --cream:        #f7fdf9;
  --text:         #1f3024;
  --text-light:   #5a7a65;
  --border:       #c8e6d4;
  --shadow:       0 4px 20px rgba(46,139,87,0.1);
  --shadow-hover: 0 8px 32px rgba(46,139,87,0.18);
  --radius:       12px;
  --radius-sm:    8px;
  --wrap:         1200px;
  --ff-serif:     'Playfair Display', Georgia, serif;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--green); color: #fff;
  padding: 0.5rem 1rem; border-radius: 0 0 6px 6px;
  font-size: 0.85rem; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== WRAP ===== */
.wrap       { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow{ max-width: 760px; }

/* ===== SECTION ===== */
.section { padding: 5rem 0; }

/* ===== BUTTONS ===== */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
.btn-wa.btn-large { font-size: 1.05rem; padding: 0.9rem 2rem; }

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--green);
  transition: background 0.2s, color 0.2s;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ===== SECTION TAGS & HEADERS ===== */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header-center h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-header-center p { font-size: 1rem; color: var(--text-light); line-height: 1.7; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(46,139,87,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.site-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-icon { font-size: 1.6rem; color: var(--green); line-height: 1; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.logo-sub { font-size: 0.72rem; color: var(--text-light); font-weight: 400; }

.site-nav ul { display: flex; gap: 0.1rem; align-items: center; }
.site-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.site-nav a:hover { background: var(--green-pale); color: var(--green); }

.header-wa { font-size: 0.88rem; padding: 0.6rem 1.3rem; flex-shrink: 0; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(160deg, #f0faf4 0%, #e4f5ec 50%, #f7fdf9 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-text { max-width: 580px; }

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.hero-text h1 {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.hero-text h1 em { font-style: italic; color: var(--green); }
.hero-sub { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.badge i { color: var(--green); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Hero photo */
.hero-photo { display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; width: 100%; max-width: 380px; }
.hero-img-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  background: linear-gradient(160deg, #a8d5b5 0%, #5cb87a 40%, #2e8b57 100%);
  box-shadow: 0 20px 60px rgba(46,139,87,0.25);
}
.hero-photo-card {
  position: absolute;
  bottom: -3.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-photo-card i { font-size: 1.5rem; color: var(--green); }
.hero-photo-card strong { display: block; font-size: 0.9rem; font-weight: 700; }
.hero-photo-card span { font-size: 0.78rem; color: var(--text-light); }

/* ===== SOBRE ===== */
.sobre-section { background: var(--white); }
.sobre-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre-img-placeholder {
  width: 100%;
  height: 440px;
  border-radius: 20px;
  background: linear-gradient(160deg, #c8e6d4 0%, #6dbf85 40%, #2e8b57 100%);
  box-shadow: var(--shadow);
}
.sobre-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: block;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.stat-item {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  text-align: center;
}
.stat-item strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--green); }
.stat-item span { font-size: 0.72rem; color: var(--text-light); line-height: 1.3; }

.sobre-text h2 {
  font-family: var(--ff-serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.sobre-text p { font-size: 0.97rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.sobre-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.credential { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.credential i { color: var(--green); width: 16px; text-align: center; }
.credential a { color: var(--green); }
.credential a:hover { text-decoration: underline; }

/* ===== BENEFITS ===== */
.benefits-section { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 1.1rem;
}
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); background: var(--white); }
.service-card-highlight {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.service-card-highlight h3,
.service-card-highlight p { color: rgba(255,255,255,0.95); }
.service-card-highlight .service-link { color: #fff; border-color: rgba(255,255,255,0.6); }
.service-card-highlight .service-link:hover { background: rgba(255,255,255,0.15); }
.service-card-highlight .service-icon { background: rgba(255,255,255,0.2); color: #fff; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.service-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 0.25rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 0.65rem; color: var(--green-dark); }

/* ===== PROCESS ===== */
.process-section { background: var(--green-pale); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 3rem;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; }
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.1rem;
  margin-top: 3.5rem;
}
.process-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.rating-summary .stars { color: #f59e0b; font-size: 1rem; display: flex; gap: 0.1rem; }
.rating-summary span { font-size: 0.88rem; color: var(--text-light); font-weight: 600; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars { color: #f59e0b; font-size: 0.88rem; display: flex; gap: 0.15rem; }
.testimonial-text { font-size: 0.93rem; color: var(--text); line-height: 1.8; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; font-weight: 700; }
.testimonial-author span { font-size: 0.76rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-wrap { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon { font-size: 0.85rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

/* ===== LOCAL SEO ===== */
.local-seo-section { background: var(--green-pale); }
.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.neighborhood-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  background: var(--white);
  color: var(--green-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* ===== LOCATION ===== */
.location-section { background: var(--white); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-info h2 {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.75rem 0 1.5rem;
}
.location-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.location-row { display: flex; gap: 1rem; align-items: flex-start; }
.location-row i { color: var(--green); font-size: 1rem; margin-top: 0.25rem; flex-shrink: 0; width: 18px; text-align: center; }
.location-row strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.location-row span { font-size: 0.95rem; color: var(--text); line-height: 1.65; }
.location-row a { color: var(--green); font-weight: 600; }
.location-row a:hover { text-decoration: underline; }

/* No convenio notice */
.no-convenio-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #5a4500;
  margin-bottom: 1.5rem;
}
.no-convenio-notice i { color: #f59e0b; flex-shrink: 0; }

/* ===== CTA FINAL ===== */
.cta-final-section { background: var(--green); padding: 4rem 0; }
.cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-final-text h2 {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.cta-final-text p { font-size: 0.97rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 540px; }
.cta-final-section .btn-wa { background: #fff; color: var(--green); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.cta-final-section .btn-wa:hover { background: #f0faf4; }

/* ===== FOOTER ===== */
.site-footer { background: var(--green-footer); color: #fff; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-logo-icon { color: #6dbf85; }
.footer-logo-name { color: #fff; }
.footer-logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-top: 0.75rem; margin-bottom: 1.25rem; max-width: 320px; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-size: 1.15rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-social a:hover { color: #6dbf85; }

.footer-nav h3 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-nav a:hover { color: #6dbf85; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-align: center; }
.seo-footer { margin-top: 0.3rem; font-size: 0.72rem !important; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 60px; height: 60px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 300;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.65); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr 360px; gap: 2.5rem; }
  .sobre-inner        { grid-template-columns: 360px 1fr; gap: 2.5rem; }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-steps      { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-arrow      { display: none; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: 1 / -1; }
  .location-inner     { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 199;
    border-top: 1px solid var(--border);
  }
  .site-nav.open    { display: block; }
  .site-nav ul      { flex-direction: column; gap: 0; }
  .site-nav a       { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .header-wa        { display: none; }
  .hamburger        { display: flex; }
  .site-header      { position: relative; }

  .hero-section     { padding: 3rem 0; }
  .hero-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-text h1     { font-size: 2rem; }
  .hero-photo       { order: -1; }
  .hero-img-placeholder { height: 300px; }

  .sobre-inner      { grid-template-columns: 1fr; }
  .sobre-img-placeholder { height: 280px; }
  .sobre-stats      { grid-template-columns: repeat(3, 1fr); }

  .benefits-grid    { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .cta-final-inner  { flex-direction: column; text-align: center; }
  .hero-ctas        { flex-direction: column; align-items: flex-start; }

  .section          { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-text h1     { font-size: 1.75rem; }
  .hero-badges      { flex-direction: column; align-items: flex-start; }
  .sobre-stats      { grid-template-columns: 1fr; }
}

/* ===== PÁGINAS INTERNAS ===== */

/* Hero de página interna */
.page-hero-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: #fff;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero-inner .section-tag { background: rgba(255,255,255,0.2); color: #fff; }
.page-hero-inner h1 {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  color: #fff;
  margin: 0.75rem 0;
}
.page-hero-inner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

/* Grid de bairros */
.bairros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bairro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bairro-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.bairro-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.bairro-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.bairro-card p  { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }

/* Grid missão/história/valores */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.valor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.valor-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.valor-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.valor-card p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

/* Lista de bairros simples */
.bairros-lista {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
}
.bairros-lista li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}
.bairros-lista li i { color: var(--green); font-size: 0.9rem; }

/* Cards de contato */
.contato-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contato-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.contato-card-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contato-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.contato-card p  { font-size: 0.87rem; color: var(--text-light); }
.contato-card a  { font-weight: 700; color: var(--green); font-size: 0.95rem; }
.contato-card a:hover { text-decoration: underline; }
.contato-card span { font-size: 0.8rem; color: var(--text-light); }

/* Seção Entre em Contato com foto */
.contato-foto-section { background: var(--cream); }
.contato-foto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contato-foto-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.contato-foto-text h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.contato-foto-text h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin-top: 0.5rem;
}
.contato-foto-text > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.contato-foto-text > p a { color: var(--green); text-decoration: underline; }
.contato-foto-rows { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contato-foto-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contato-foto-row > i {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contato-foto-row strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.contato-foto-row p { font-size: 0.87rem; color: var(--text-light); margin: 0 0 0.2rem; }
.contato-foto-row a { font-size: 0.9rem; color: var(--text); display: block; }
.contato-foto-row a:hover { color: var(--green); }
.contato-foto-row span { font-size: 0.82rem; color: var(--text-light); }

/* Responsivo páginas internas */
@media (max-width: 768px) {
  .contato-foto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-inner h1  { font-size: 1.8rem; }
  .bairros-grid        { grid-template-columns: 1fr 1fr; }
  .valores-grid        { grid-template-columns: 1fr; }
  .bairros-lista       { grid-template-columns: repeat(2, 1fr); }
  .contato-cards       { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bairros-grid        { grid-template-columns: 1fr; }
  .bairros-lista       { grid-template-columns: 1fr; }
}
