/* ===== COMPONENTES ===== */

/* Main — sem margin/padding para colar no header */
.site-main {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Remover padding/margin dos wrappers do Elementor na home */
.site-main .elementor,
.site-main .elementor-element,
.site-main .e-con,
.site-main .e-con-inner,
.site-main .e-con-boxed {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  --container-max-width: 100% !important;
  --content-width: 100% !important;
  --margin-top: 0px !important;
  --margin-bottom: 0px !important;
  --padding-top: 0px !important;
  --padding-bottom: 0px !important;
  --padding-left: 0px !important;
  --padding-right: 0px !important;
  box-sizing: border-box !important;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
/* Pulso sutil para chamar atenção */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: whatsapp-pulse 2.5s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}
/* Tooltip ao passar o mouse */
.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--foreground, #1e293b);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--foreground, #1e293b);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float-tooltip { display: none; }
}

/* Carousel de banners (home) */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  margin: 0;
  padding: 0;
}
.hero-carousel-track {
  position: relative;
  width: 100%;
}
.hero-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
/* Slide ativo define a altura do track (position relative) */
.hero-carousel-slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}
.hero-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Controles prev/next */
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: rgba(0, 0, 0, 0.65);
}
.hero-carousel-prev { left: 1rem; }
.hero-carousel-next { right: 1rem; }

/* Indicadores (dots) */
.hero-carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.hero-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.hero-carousel-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}
.hero-carousel-dot:hover {
  border-color: #fff;
}

/* Carousel responsivo */
@media (max-width: 768px) {
  .hero-carousel-prev,
  .hero-carousel-next {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .hero-carousel-dots { bottom: 0.75rem; }
  .hero-carousel-dot { width: 9px; height: 9px; }
}

/* ===== NOSSOS PARCEIROS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.partner-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: var(--lightprimary);
  color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: center;
}
.partner-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.partner-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.partner-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.partner-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ===== NOSSO TIME ===== */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  background: var(--header-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
}
.team-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.team-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== DEPOIMENTOS ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  position: relative;
  min-height: 280px;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  text-align: center;
  padding: 0 1rem;
}
.testimonial-slide.active {
  opacity: 1;
  position: relative;
}
.testimonial-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  color: var(--lightprimary);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--header-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.testimonial-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.15);
}
.testimonial-dot:hover {
  border-color: var(--primary);
}

/* Header */
.site-header {
  background: var(--header-gradient);
  border-bottom: 4px solid var(--header-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}
.site-header .site-logo {
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header .site-logo img {
  max-height: 48px;
  width: auto;
}
.site-header .site-tagline {
  color: var(--warning);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

/* Menu — WordPress gera <ul class="menu"> com <li class="menu-item"> */
.site-header .main-menu,
.site-header .menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-menu > li,
.site-header .menu > li {
  position: relative;
}
.site-header .main-menu a,
.site-header .menu a,
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.5rem 0;
  display: block;
}
.site-header .main-menu a:hover,
.site-header .menu a:hover,
.site-header .nav-link:hover,
.site-header .main-menu .current-menu-item > a,
.site-header .menu .current-menu-item > a {
  color: var(--white);
}

/* Submenu (dropdown) — WordPress gera <ul class="sub-menu"> */
.site-header .main-menu .sub-menu,
.site-header .menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 200px;
  list-style: none;
  z-index: 100;
}
.site-header .main-menu li:hover > .sub-menu,
.site-header .menu li:hover > .sub-menu {
  display: block;
}
.site-header .sub-menu a,
.site-header .sub-menu .nav-link {
  color: var(--foreground) !important;
  padding: 0.5rem 1rem;
}
.site-header .sub-menu a:hover,
.site-header .sub-menu .nav-link:hover {
  color: var(--primary) !important;
  background: var(--muted);
}

/* Indicador de submenu (seta) */
.site-header .menu-item-has-children > a::after,
.site-header .has-children > a::after {
  content: '▾';
  margin-left: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Header CTAs */
.site-header .header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile toggle */
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Cards */
.card-modern {
  background: var(--card);
  border: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-primary-sm);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-modern:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-modern-flat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* Botões */
.btn-modern-primary,
.btn-modern-secondary,
.btn-modern-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-btn);
}
.btn-modern-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-modern-primary:hover {
  background: var(--primary-emphasis);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-modern-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-modern-secondary:hover {
  background: var(--secondary-emphasis);
  color: var(--white);
}
.btn-modern-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: none;
}
.btn-modern-outline:hover {
  background: var(--lightprimary);
  color: var(--primary);
}

/* Seções */
.section-muted {
  background: var(--muted);
  padding: 5rem 0;
}
.section-default {
  background: var(--background);
  padding: 5rem 0;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0;
}

/* Section title */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-title p {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Counter */
.counter-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.counter-label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Feature card */
.feature-card {
  text-align: center;
  padding: 2rem;
}
.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--lightprimary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .feature-icon img {
  max-width: 36px;
  max-height: 36px;
}
.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-answer {
  padding: 0 1.5rem 1rem;
  color: var(--muted-foreground);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--muted);
  padding: 2rem 0;
}
.breadcrumb h1 {
  margin: 0;
  font-size: 2rem;
}
.breadcrumb .breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
}
.breadcrumb .breadcrumb-list a {
  color: var(--muted-foreground);
}
.breadcrumb .breadcrumb-list li::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--muted-foreground);
}
.breadcrumb .breadcrumb-list li:last-child::after {
  content: '';
}

/* Blog post card */
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.post-card .post-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.post-card .post-body {
  padding: 1.5rem;
}
.post-card .post-category {
  display: inline-block;
  background: var(--lightprimary);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.post-card .post-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.post-card .post-title a {
  color: var(--foreground);
}
.post-card .post-title a:hover {
  color: var(--primary);
}
.post-card .post-excerpt {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.post-card .post-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Team card */
.team-card {
  text-align: center;
}
.team-card .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--lightprimary);
}
.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.team-card .team-role {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* Testimonial */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}
.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: var(--foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card .testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.5rem;
}
.testimonial-card .testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card .testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.site-footer a:hover {
  color: var(--white);
}
.site-footer .footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.site-footer .footer-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.2rem;
}
.site-footer .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.site-footer .footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.site-footer .footer-social a:hover {
  background: var(--primary);
}
.site-footer .footer-newsletter input {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.site-footer .footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Checkmark list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--bodytext);
  font-size: 0.875rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
}
.badge-success { background: var(--success); }
.badge-error { background: var(--error); }
.badge-warning { background: var(--warning); }
.badge-info { background: var(--info); }

/* Responsive */
@media (max-width: 968px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header .main-menu,
  .site-header .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem var(--container-padding);
    gap: 0;
    z-index: 100;
  }
  .site-header .main-menu.active,
  .site-header .menu.active {
    display: flex;
  }
  .site-header .main-menu li,
  .site-header .menu li {
    width: 100%;
  }
  .site-header .main-menu a,
  .site-header .menu a,
  .site-header .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  /* Submenu no mobile — expansível inline */
  .site-header .sub-menu {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .site-header .sub-menu a {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.5rem 1rem;
  }
  .site-header .menu-toggle {
    display: block;
  }
  .site-header .header-cta .btn-modern-outline {
    display: none;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .section-muted, .section-default, .section-dark {
    padding: 3rem 0;
  }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .section-title h2 { font-size: 1.5rem; }
}
