/* ================================================
   ESPAÇO GOURMET BOA BOA — DESIGN CLÁSSICO ELEGANTE
   ================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --bg-warm: #f5f0eb;
  --bg-section-alt: #f0ebe4;
  --bg-dark: #1a1210;
  --bg-darker: #120c0a;

  --gold: #c4972a;
  --gold-light: #d4a83a;
  --gold-dark: #a67c1e;
  --gold-muted: rgba(196, 151, 42, 0.12);

  --crimson: #8b1a18;
  --crimson-light: #a52523;
  --crimson-dark: #6b1210;

  --text-dark: #2c1e1a;
  --text-body: #4a3c36;
  --text-muted: #7a6e68;
  --text-light: #f8f5f2;
  --text-gold: #c4972a;

  --border-light: rgba(196, 151, 42, 0.15);
  --border-warm: #e8ddd3;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Roboto', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 18, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 18, 16, 0.1);
  --shadow-lg: 0 16px 50px rgba(26, 18, 16, 0.14);
  --shadow-gold: 0 4px 20px rgba(196, 151, 42, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* --- REVEAL ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

img { max-width: 100%; height: auto; }

::selection {
  background: rgba(196, 151, 42, 0.25);
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* --- ORNAMENT DIVIDER --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 0;
}
.ornament::before,
.ornament::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.ornament span {
  color: var(--gold);
  font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::after { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 151, 42, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 26, 24, 0.25);
}

.btn-crimson:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 26, 24, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.mt-4 { margin-top: 1.5rem; }

/* --- HEADER --- */
.header {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-warm);
  padding: 14px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: 0 4px 30px rgba(26, 18, 16, 0.08);
  padding: 8px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; }

.logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.logo-img:hover { transform: scale(1.04); }

.logo-img-footer {
  height: 170px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 12px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover::after {
  left: 16px;
  right: 16px;
}

.nav-menu a:hover {
  color: var(--gold-dark);
}

.btn-whatsapp-header {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
  transition: all var(--transition);
}

.btn-whatsapp-header:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --- HERO (ELEGANT LIGHT) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(250,248,245,0.85) 0%, rgba(245,240,235,0.8) 50%, rgba(240,235,228,0.85) 100%),
              url('corporate_hero_bg.png');
  background-size: cover;
  background-position: center;
  padding-top: 180px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196, 151, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: fadeInUp 0.8s ease forwards;
}

.badge {
  display: inline-block;
  background: var(--gold-muted);
  color: var(--gold-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(196, 151, 42, 0.25);
  letter-spacing: 0.5px;
}

.hero-content h2 {
  font-size: 3.8rem;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.hero-content h2 span {
  color: var(--crimson);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- SECTION TITLES --- */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* --- PROGRAMS / MENU SECTION --- */
.menu-section {
  background: var(--bg-white);
  text-align: center;
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-card {
  background: var(--bg-cream);
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.menu-card:hover::before { transform: scaleX(1); }

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 151, 42, 0.25);
}

.card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(196, 151, 42, 0.2);
}

.card-icon svg {
  width: 32px; height: 32px;
}

.menu-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.menu-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CORPORATE / BENEFITS SECTION --- */
.corporate-section {
  background: var(--bg-warm);
  position: relative;
}

.corporate-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
}

.corporate-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.subtitle {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.corporate-text h2 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.highlight-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 3px 10px rgba(196, 151, 42, 0.3);
}

.benefits-list h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.benefits-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CORPORATE IMAGE --- */
.corporate-image {
  position: relative;
}

.corp-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(196, 151, 42, 0.15);
  transition: all var(--transition);
}

.corp-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 18, 16, 0.18);
}

.experience-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  box-shadow: 0 8px 25px rgba(139, 26, 24, 0.35);
  border: 5px solid var(--bg-warm);
  animation: gentlePulse 4s ease-in-out infinite;
  line-height: 1.3;
}

/* --- STATS BAR --- */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  color: var(--text-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(248, 245, 242, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* --- TESTIMONIAL / QUOTE --- */
.quote-section {
  background: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(196, 151, 42, 0.1);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  padding-top: 70px;
  color: var(--text-light);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}

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

.footer-brand p {
  color: rgba(248, 245, 242, 0.6);
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(248, 245, 242, 0.6);
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(248, 245, 242, 0.6);
}
.footer-contact a:hover { color: var(--gold); }

.footer-links a {
  color: rgba(248, 245, 242, 0.6);
  font-size: 0.92rem;
  position: relative;
}

.footer-links a::before {
  content: '→';
  margin-right: 8px;
  color: var(--gold);
  opacity: 0;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
  background: var(--bg-darker);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 245, 242, 0.35);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- H1 STYLING --- */
.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -1px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--crimson);
}

/* --- ÁREAS ATENDIDAS --- */
.areas-section {
  background: var(--bg-white);
  position: relative;
}

.areas-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.area-card {
  background: var(--bg-cream);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.area-card:hover::before { transform: scaleX(1); }

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 151, 42, 0.3);
}

.area-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: left;
}

/* --- FAQ SECTION --- */
.faq-section {
  background: var(--bg-section-alt);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-warm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(196, 151, 42, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 28px;
  list-style: none;
  transition: background var(--transition);
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question:hover {
  background: var(--gold-muted);
}

.faq-question h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--gold-dark);
  font-size: 1.4rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid rgba(196, 151, 42, 0.2);
}

.faq-item[open] .faq-toggle {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  animation: fadeInUp 0.35s ease;
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- SR-ONLY (ACCESSIBILITY) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
  .corporate-container {
    grid-template-columns: 1fr;
  }
  .corporate-image { order: -1; }
  .hero-content h1 { font-size: 2.8rem; }
  .section-title h2 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 12px;
  }
  .nav-menu ul {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-menu a {
    font-size: 0.78rem;
    padding: 6px 10px;
    letter-spacing: 1px;
  }
  .btn-whatsapp-header { font-size: 0.8rem; padding: 8px 18px; }
  .logo-img { height: 100px; }
  .logo-img-footer { height: 130px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { text-align: center; padding-top: 220px; }
  .hero-content { margin: 0 auto; max-width: 100%; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-buttons { justify-content: center; }
  .section-padding { padding: 60px 0; }
  .section-title h2 { font-size: 1.9rem; }
  .corporate-text h2 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.2rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 18px 20px; }
  .faq-question h3 { font-size: 0.95rem; }
  .faq-answer { padding: 0 20px 20px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .area-card { padding: 28px 20px; }
  .area-card h3 { font-size: 1.05rem; }
}
