/* ==========================================================================
   ESCOLA SAÚDE E VIDA - DESIGN SYSTEM & STYLESHEET
   Zero WordPress - Pure HTML5 / CSS3 / Vanilla JS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Palette */
  --green-dark: #003824;
  --green-primary: #005A3A;
  --green-light: #008756;
  --green-soft: #e6f4ef;
  --orange-accent: #F58320;
  --orange-hover: #d96d0e;
  --orange-soft: #fff4ea;

  /* Neutral Tones */
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Fonts */
  --font-heading: 'Outfit', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 56, 36, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 56, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 56, 36, 0.12);
  --shadow-glow: 0 0 25px rgba(245, 131, 32, 0.3);

  /* Layout Constants */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-medium);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common Styles */
.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--orange-soft);
  color: var(--orange-accent);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-badge.green {
  background-color: var(--green-soft);
  color: var(--green-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--orange-accent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--green-primary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 90, 58, 0.3);
}

.btn-outline {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ==========================================================================
   TOPBAR & NAVBAR
   ========================================================================== */
.topbar {
  background-color: var(--green-dark);
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  transition: color var(--transition-fast);
}

.topbar-item i {
  color: var(--orange-accent);
}

.topbar-item:hover {
  color: #ffffff;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-links a {
  color: #e2e8f0;
  transition: color var(--transition-fast);
}

.topbar-links a:hover {
  color: var(--orange-accent);
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 56, 36, 0.08);
  border-bottom: 2px solid #edf2f7;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(0, 56, 36, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 72px;
  width: auto;
  max-height: 75px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-dark);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all var(--transition-normal);
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: var(--green-primary);
  background-color: rgba(0, 90, 58, 0.06);
}

.nav-link.active {
  color: var(--orange-accent);
  background-color: var(--orange-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn-primary {
  background: linear-gradient(135deg, var(--orange-accent) 0%, #e06d0b 100%);
  box-shadow: 0 6px 20px rgba(245, 131, 32, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--green-dark);
  cursor: pointer;
  padding: 8px;
}

/* Offcanvas Drawer */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 56, 36, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.offcanvas-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--green-dark);
  color: #ffffff;
  z-index: 1200;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  transition: right var(--transition-smooth);
}

.offcanvas-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.drawer-logo img {
  height: 44px;
}

.drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: #e2e8f0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--orange-accent);
}

.drawer-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   FULL-WIDTH OFFICIAL BANNER (BANNER VITOR)
   ========================================================================== */
.fullwidth-banner-section {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--green-dark);
  line-height: 0;
}

.fullwidth-banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.fullwidth-banner-container a {
  display: block;
  width: 100%;
}

.fullwidth-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.banner-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-slider-track {
  display: flex;
  width: 100%;
}

.banner-slide {
  min-width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.banner-slide.active {
  display: block;
  opacity: 1;
}

.banner-slide a {
  display: block;
  width: 100%;
}

.banner-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.banner-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 56, 36, 0.7);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
}

.banner-slider-arrow:hover {
  background: var(--orange-accent);
  border-color: var(--orange-accent);
  transform: translateY(-50%) scale(1.1);
}

.banner-slider-arrow.prev {
  left: 20px;
}

.banner-slider-arrow.next {
  right: 20px;
}

.banner-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.banner-slider-dots .dot.active {
  background: var(--orange-accent);
  width: 36px;
  border-radius: 20px;
  border-color: var(--orange-accent);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: #ffffff;
  padding: 110px 0 140px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(245, 131, 32, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(0, 135, 86, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--orange-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--orange-accent);
}

.hero-text {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.stat-item h4 {
  font-size: 2.2rem;
  color: var(--orange-accent);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #ffffff;
  color: var(--text-dark);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.floating-icon {
  width: 48px;
  height: 48px;
  background-color: var(--orange-soft);
  color: var(--orange-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.floating-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}

.floating-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Wave Divider */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.wave-divider .shape-fill {
  fill: var(--bg-body);
}

/* ==========================================================================
   DIFERENCIAIS / FEATURES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 131, 32, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--orange-soft);
  color: var(--orange-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--orange-accent);
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

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

/* ==========================================================================
   COURSES GRID & CARDS
   ========================================================================== */
.courses-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-primary);
  box-shadow: 0 4px 12px rgba(0, 90, 58, 0.2);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.course-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 90, 58, 0.3);
}

.course-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.course-card:hover .course-media img {
  transform: scale(1.08);
}

.course-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--green-dark);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-tag.spec {
  background-color: var(--orange-accent);
}

.course-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.course-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.meta-item i {
  color: var(--orange-accent);
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.course-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.testimonials-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.testimonials-header p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-btn:hover {
  background-color: var(--orange-accent);
  border-color: var(--orange-accent);
  transform: translateY(-2px);
}

.testimonial-card-container {
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--orange-soft);
  color: rgba(245, 131, 32, 0.25);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-accent);
}

.author-info h5 {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.faq-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-card-box {
  background-color: var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 30px;
  border: 1fr solid rgba(0, 90, 58, 0.1);
}

.faq-card-box h4 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.faq-card-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item[open] {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  color: var(--orange-accent);
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 28px 24px 28px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ==========================================================================
   PARTNERS / HOSPITALS SECTION
   ========================================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-accent);
}

.partner-card img {
  max-height: 60px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   MULTI-STEP ENROLLMENT FORM (INSCRIÇÃO)
   ========================================================================== */
.form-wizard-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--border-light);
  z-index: 1;
  transform: translateY(-50%);
}

.step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-card);
  padding: 0 10px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-body);
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.step-indicator.active .step-number {
  background-color: var(--orange-accent);
  border-color: var(--orange-accent);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.step-indicator.active .step-label {
  color: var(--green-dark);
}

.step-indicator.completed .step-number {
  background-color: var(--green-primary);
  border-color: var(--green-primary);
  color: #ffffff;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.course-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.course-radio-card {
  position: relative;
}

.course-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.course-radio-card label {
  display: block;
  padding: 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.course-radio-card input[type="radio"]:checked + label {
  border-color: var(--orange-accent);
  background-color: var(--orange-soft);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.form-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: #ffffff;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(0, 90, 58, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

/* Summary Review Box */
.review-box {
  background-color: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 20px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  font-weight: 600;
  color: var(--text-muted);
}

.review-value {
  font-weight: 700;
  color: var(--green-dark);
}

/* ==========================================================================
   FOOTER & FLOATING WHATSAPP
   ========================================================================== */
.site-footer {
  background-color: var(--green-dark);
  color: #ffffff;
  padding-top: 80px;
}

.footer-cta-banner {
  background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: -60px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
}

.footer-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-cta-text h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 8px;
}

.footer-cta-text p {
  color: #fff4ea;
  font-size: 1.05rem;
}

.footer-main {
  padding-top: 110px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 20px 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--orange-accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--orange-accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--orange-accent);
}

.footer-bottom {
  padding: 25px 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
  animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-banner-overlay-content {
    position: relative;
    inset: auto;
    background: var(--green-dark);
    padding: 30px 20px;
    max-width: 100%;
    text-align: center;
  }

  .banner-slide-img {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
  }

  .topbar {
    display: none;
  }

  .nav-menu, .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .form-group-grid {
    grid-template-columns: 1fr;
  }

  .form-wizard-wrapper {
    padding: 24px 18px;
  }

  .wizard-steps {
    overflow-x: auto;
    padding-bottom: 10px;
  }
}
