/*
Theme Name: Bevilaqua
Theme URI: https://escritoriobevilaqua.com
Description: Tema institucional do Escritório Bevilaqua — Empresa Júnior de Direito da FDR/UFPE
Author: O Escritório Bevilaqua
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #A9CF44;
  --green-dark: #8aab2e;
  --dark: #212021;
  --bg: #F3F3F3;
  --white: #FFFFFF;
  --muted: #6B6B6B;
  --border: #E0E0E0;
  --shadow: 0 2px 12px rgba(33,32,33,0.08);
  --shadow-hover: 0 6px 24px rgba(33,32,33,0.14);
  --radius: 8px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Open Sans', sans-serif; font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
p { color: var(--muted); }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 24px; }
.section--light { background: var(--bg); }
.section--dark { background: var(--dark); }
.section--green { background: var(--green); }

/* ===== BUTTONS ===== */
.btn { display: inline-block; font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 1rem; border-radius: var(--radius); text-decoration: none; transition: all 0.2s ease; cursor: pointer; border: none; }
.btn--primary { background: var(--green); color: var(--dark); padding: 14px 32px; }
.btn--primary:hover { background: var(--green-dark); }
.btn--ghost { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 12px 30px; }
.btn--ghost:hover { background: var(--dark); color: var(--white); }
.btn--ghost-white { background: transparent; color: var(--white); border: 2px solid var(--white); padding: 12px 30px; }
.btn--ghost-white:hover { background: var(--white); color: var(--dark); }
.btn--ghost-dark-on-green { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 14px 32px; }
.btn--ghost-dark-on-green:hover { background: var(--dark); color: var(--green); }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--dark); margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--muted); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.7); }

/* ===== NAV ===== */
.nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); text-decoration: none; letter-spacing: -0.02em; }
.nav__logo span { color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { text-decoration: none; color: var(--dark); font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.nav__links a:hover { color: var(--green); }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }

/* ===== HERO ===== */
.hero { background: var(--bg); padding: 104px 24px 96px; text-align: center;  
  background-color: #212021;
  background-image: linear-gradient(rgba(33,32,33,0.82), rgba(33,32,33,0.82)), url('https://escritoriobevilaqua.com/wp-content/uploads/2026/06/IMG_8184-hero.jpg');
  background-size: cover;
  background-position: center 20%;
  
}
.hero__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 32px; }
.hero__badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero h1 { color: var(--dark); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero__sub { font-size: 1.05rem; line-height: 1.8; max-width: 680px; margin: 0 auto 40px; color: var(--muted); }
.hero__cta { margin-bottom: 40px; }
.hero__creds { font-size: 0.8rem; color: var(--muted); display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hero__creds span::before { content: '·'; margin-right: 8px; }
.hero__creds span:first-child::before { display: none; }

/* ===== CARDS ===== */
.cards-grid { display: grid; gap: 32px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); transition: all 0.25s ease; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card__icon { width: 48px; height: 48px; background: var(--green); border-radius: var(--radius); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.card h3 { color: var(--dark); margin-bottom: 12px; }
.card p { margin-bottom: 20px; font-size: 0.95rem; }
.card__link { color: var(--dark); font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.card__link:hover { color: var(--green); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature { text-align: center; padding: 8px; }
.feature__icon { width: 64px; height: 64px; background: var(--green); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.feature h3 { color: var(--dark); margin-bottom: 10px; font-size: 1rem; }
.feature p { font-size: 0.875rem; }

/* ===== TIMELINE ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; top: 31px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: var(--green); z-index: 0; }
.timeline__item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.timeline__num { width: 64px; height: 64px; background: var(--green); border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--dark); border: 4px solid var(--white); }
.timeline__item h3 { color: var(--dark); font-size: 1rem; margin-bottom: 10px; }
.timeline__item p { font-size: 0.875rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.testimonial__quote { font-size: 3rem; color: var(--green); line-height: 0.8; margin-bottom: 16px; font-family: Georgia, serif; }
.testimonial p { font-size: 0.95rem; color: var(--dark); font-style: italic; margin-bottom: 24px; }
.testimonial__author strong { display: block; font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--dark); }
.testimonial__author span { font-size: 0.8rem; color: var(--muted); }
.stat-highlight { text-align: center; font-size: 1rem; color: var(--muted); }
.stat-highlight strong { font-family: 'Open Sans', sans-serif; font-size: 1.25rem; color: var(--dark); }

/* ===== FDR BLOCK ===== */
.fdr-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fdr-block__img { border-radius: var(--radius); overflow: hidden; }
.fdr-block__img img { width: 100%; height: 400px; object-fit: cover; }
.fdr-block__img-placeholder { width: 100%; height: 400px; background: linear-gradient(135deg, #2d2d2d 0%, #444 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #666; font-size: 0.875rem; text-align: center; padding: 24px; }
.fdr-block__content h2 { color: var(--green); margin-bottom: 20px; }
.fdr-block__content p { color: rgba(255,255,255,0.75); margin-bottom: 16px; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 96px 24px; background: var(--green); text-align: center; }
.cta-final h2 { color: var(--dark); margin-bottom: 16px; }
.cta-final p { color: var(--dark); opacity: 0.75; margin-bottom: 40px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 72px 24px 32px; }
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer__logo { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; }
.footer__desc { font-size: 0.875rem; color: #999; line-height: 1.8; margin-bottom: 16px; }
.footer__email a { color: var(--green); text-decoration: none; font-size: 0.875rem; }
.footer__col h4 { font-family: 'Open Sans', sans-serif; font-size: 0.875rem; color: var(--white); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul li a { color: #999; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid #2d2d2d; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p, .footer__bottom span { font-size: 0.8rem; color: #555; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--bg); padding: 72px 24px; text-align: center; }
.page-hero h1 { color: var(--dark); margin-bottom: 16px; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ===== SERVICE PAGE ===== */
.service-problem { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.problem-card { border-left: 3px solid var(--green); padding: 24px; background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }
.problem-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1rem; }
.problem-card p { font-size: 0.875rem; }
.service-included ul, .includes-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.service-included ul li, .includes-list li { font-size: 0.95rem; color: var(--dark); padding-left: 20px; position: relative; }
.service-included ul li::before, .includes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.service-includes { max-width: 860px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.process-step__num { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--green); margin-bottom: 12px; }
.process-step h3 { color: var(--dark); font-size: 1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.875rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--dark); font-size: 1rem; margin-bottom: 10px; cursor: pointer; }
.faq-item p { font-size: 0.95rem; }

/* ===== FORM ===== */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-progress { display: flex; gap: 8px; margin-bottom: 40px; justify-content: center; }
.form-progress__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: background 0.3s; }
.form-progress__dot.active { background: var(--green); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius); font-family: 'Open Sans', sans-serif; font-size: 0.95rem; color: var(--dark); transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-option { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; }
.radio-option:hover { border-color: var(--green); }
.radio-option input { accent-color: var(--green); width: 18px; height: 18px; }
.radio-option span { font-size: 0.95rem; color: var(--dark); font-weight: 600; }
.radio-option.selected { border-color: var(--green); background: rgba(169,207,68,0.06); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.btn-back { background: none; border: none; color: var(--muted); font-size: 0.875rem; cursor: pointer; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
.checkbox-group input { width: 18px; height: 18px; accent-color: var(--green); margin-top: 2px; flex-shrink: 0; }
.checkbox-group label { font-size: 0.875rem; color: var(--muted); cursor: pointer; }

/* ===== SOBRE PAGE ===== */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mission-card, .vision-card { padding: 48px; text-align: center; }
.mission-card { background: var(--dark); color: var(--white); border-radius: var(--radius) 0 0 var(--radius); }
.vision-card { background: var(--green); border-radius: 0 var(--radius) var(--radius) 0; }
.mission-card p, .vision-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.mission-card h3 { font-size: 1.3rem; color: var(--white); }
.vision-card h3 { font-size: 1.3rem; color: var(--dark); }
.vision-card p { color: rgba(33,32,33,0.6); }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid #2d2d2d; }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: 'Open Sans', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.stat-item span { font-size: 0.875rem; color: #999; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-card__photo { width: 100%; border-radius: 8px; overflow: hidden; margin: 0 0 16px; }
.team-card__photo img { width: 100%; height: auto; display: block; object-fit: cover; }
.team-card h3 { color: var(--dark); font-size: 0.95rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--muted); }
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.services-list li { list-style: none; padding: 14px 20px; background: var(--white); border-radius: var(--radius); font-size: 0.9rem; color: var(--dark); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); }
.services-list li::before { content: '→'; color: var(--green); font-weight: 700; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-card__thumb { height: 200px; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.875rem; }
.blog-card__body { padding: 28px; }
.blog-card__cat { font-size: 0.75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-card h3 { color: var(--dark); font-size: 1.05rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; margin-bottom: 20px; }
.blog-card a { color: var(--dark); font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.blog-card a:hover { color: var(--green); }
.blog-card__meta { font-size: 0.8rem; color: var(--muted); }

/* ===== OBRIGADO ===== */
.obrigado { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 96px 24px; background: var(--bg); text-align: center; }
.obrigado__icon { width: 80px; height: 80px; background: var(--green); border-radius: 50%; margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.obrigado h1 { margin-bottom: 16px; }
.obrigado p { max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.obrigado__sla { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 40px; }
.obrigado__sla::before { content: '⏱'; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid--4, .features-grid, .stats-bar, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .cards-grid--3, .cards-grid--4, .features-grid, .service-problem, .service-included ul,
  .process-steps, .testimonials-grid, .timeline, .stats-bar, .team-grid,
  .fdr-block, .mission-vision, .services-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mission-card { border-radius: var(--radius) var(--radius) 0 0; }
  .vision-card { border-radius: 0 0 var(--radius) var(--radius); }
  .fdr-block__img img, .fdr-block__img-placeholder { height: 240px; }
}


/* =============================================
   NAV DROPDOWN
   ============================================= */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dropdown-trigger svg { transition: transform 0.2s; }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown-menu a:hover { background: var(--bg); color: var(--green); }

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 0;
    display: none;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu a { padding: 10px 24px; font-size: 0.9rem; }
}

/* Logo image sizing */
.nav__logo img { height: 40px; width: auto; display: block; }

/* Mobile nav - hidden by default */
.nav__mobile { display: none !important; }
.nav__mobile.open { display: block; background: #fff; border-top: 1px solid var(--border); padding: 16px 0; }
.nav__mobile a { display: block; padding: 12px 24px; color: var(--dark); text-decoration: none; font-size: 0.9rem; }
.nav__mobile a:hover { color: var(--green); }

/* Dropdown groups */
.nav__dropdown-group { border-bottom: 1px solid var(--border); }
.nav__dropdown-group:last-child { border-bottom: none; padding-bottom: 4px; }
.nav__dropdown-label { display: block; padding: 8px 20px 4px; font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); pointer-events: none; }
.nav__dropdown-group a { padding: 8px 20px 8px 28px !important; }
.nav__dropdown-menu { min-width: 260px; }

/* Hero photo text colors */
.hero h1, .hero .hero__sub { color: #ffffff !important; }
.hero em { color: var(--green) !important; font-style: normal; }
.hero .hero__badge { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.25) !important; color: #fff !important; }
.hero .hero__stats, .hero .hero__stats .sep { color: rgba(255,255,255,0.75) !important; }
.hero .btn-outline { border-color: rgba(255,255,255,0.6) !important; color: #ffffff !important; }
.hero .btn-outline:hover { background: #fff !important; color: var(--dark) !important; }


/* =============================================
   PAGE HERO (Cases, Materiais, Contato)
   ============================================= */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 80px 0 60px;
}
.page-hero .section-label {
  color: var(--green);
  margin-bottom: 16px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 700px;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
}

/* =============================================
   STATS GRID (Cases)
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 32px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   TESTIMONIALS (Cases)
   ============================================= */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__info strong { display: block; font-weight: 700; }
.testimonial-card__info span { font-size: 0.85rem; color: #777; }

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* =============================================
   TEAM CARD PHOTOS (/sobre)
   ============================================= */
.team-card__photo { width: 100%; border-radius: 8px; overflow: hidden; margin: 0 0 16px; }
.team-card__photo img { width: 100%; height: auto; display: block; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
