/* ==============================================================================
   Blue School - Design System & Modern Stylesheet
   Identity: Vibrant Cyan (#00A3E0), Deep Sky (#0170B9), Deep Navy (#0A2540)
   Typography: 'Outfit' (Headings) & 'Inter' (Body)
   ============================================================================== */

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

:root {
  --primary: #00A3E0;
  --primary-hover: #0088cc;
  --primary-deep: #0170B9;
  --primary-light: #E6F6FD;
  --primary-gradient: linear-gradient(135deg, #00A3E0 0%, #0170B9 100%);
  --accent-gold: #F59E0B;
  
  --navy: #0A2540;
  --navy-light: #16385C;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --bg-main: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-ice: #F0F8FF;
  --bg-card: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-subtle: #EDF2F7;
  --border-cyan: rgba(0, 163, 224, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 6px 16px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 14px 34px rgba(10, 37, 64, 0.1);
  --shadow-cyan: 0 10px 25px rgba(0, 163, 224, 0.25);
  
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================================================
   TOP UTILITY BAR
   ============================================================================== */
.top-bar {
  background-color: #F3F7FA;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar-links a {
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar-links a:hover {
  color: var(--primary);
}

.top-bar-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.top-bar-item.has-dropdown {
  cursor: pointer;
}

.top-bar-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.top-bar-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 170px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.14);
  border: 1px solid var(--border-light);
  padding: 8px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1050;
}

.top-bar-item.has-dropdown:hover .top-bar-dropdown,
.top-bar-item.has-dropdown:focus-within .top-bar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-bar-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 12px !important;
  color: var(--primary) !important;
  font-weight: 800 !important;
  font-family: var(--font-heading);
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.top-bar-dropdown-item:hover {
  background-color: var(--primary-light) !important;
  color: var(--primary-deep) !important;
}

.cubo-icon-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.top-bar-dropdown-item:hover .cubo-icon-box {
  border-color: var(--primary-deep);
  background-color: var(--primary-light);
}

.mobile-only-portal {
  display: none !important;
}

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

.top-bar-unit-badge {
  background: rgba(0, 163, 224, 0.12);
  color: var(--primary-deep);
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
}

.top-bar-social a {
  color: var(--primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 163, 224, 0.1);
  transition: var(--transition);
}

.top-bar-social a:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==============================================================================
   MAIN HEADER & NAVIGATION (DESCOMPRIMIDO & SEM HAMBURGER NO DESKTOP)
   ============================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 2px 14px rgba(10, 37, 64, 0.05);
  transition: var(--transition);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-link svg.arrow {
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link svg.arrow {
  transform: rotate(180deg);
}

/* HOVER BRIDGE TO PREVENT DROPDOWN LOSS */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1010;
}

.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
  pointer-events: auto;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--primary-light);
  color: var(--primary-deep);
  padding-left: 18px;
}

.badge-mini-active {
  background: #DEF7EC;
  color: #03543F;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.badge-mini-soon {
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-cadastre-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 163, 224, 0.28);
  transition: var(--transition);
}

.btn-cadastre-header:hover {
  background-color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 163, 224, 0.4);
}

.btn-contact-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-contact-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* HAMBURGER MENU BUTTON: OCULTO NO DESKTOP! SÓ APARECE NO MOBILE */
.header-menu-btn {
  display: none !important;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
}

/* ==============================================================================
   HERO SLIDER (SLIDESHOW COM SLIDE DE BOLSAS DE ESTUDO & INSTITUCIONAL)
   ============================================================================== */
.hero-slider-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFD 0%, #FFFFFF 100%);
  overflow: hidden;
  min-height: 580px;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  padding: 44px 0 90px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 2;
}

.hero-badge-gama {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 163, 224, 0.1);
  border: 1px solid rgba(0, 163, 224, 0.25);
  color: var(--primary-deep);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-badge-gama.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #B45309;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.3);
}

.badge-gold .hero-badge-dot {
  background: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-title .inspira {
  color: var(--navy);
  display: block;
}

.hero-title .cyan-text {
  color: var(--primary);
  display: block;
}

.hero-title .gold-text {
  color: #D97706;
  display: block;
}

.hero-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 530px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-cyan);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background-color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 163, 224, 0.4);
}

.btn-hero-primary svg {
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.btn-hero-gold:hover {
  background: #B45309;
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.45);
}

.hero-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.hero-video-trigger:hover {
  color: var(--primary);
}

.video-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 163, 224, 0.2);
  transition: var(--transition);
}

.video-play-btn svg {
  fill: var(--primary);
  margin-left: 3px;
  transition: var(--transition);
}

.hero-video-trigger:hover .video-play-btn {
  background: var(--primary);
  transform: scale(1.08);
}

.hero-video-trigger:hover .video-play-btn svg {
  fill: #FFFFFF;
}

/* SLIDER CONTROLS (ARROWS & DOTS) */
.hero-slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-arrow-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots .dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  width: 44px;
  background-color: var(--primary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #E8F4FC;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-video-floating {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 163, 224, 0.2);
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.hero-video-floating:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 163, 224, 0.25);
}

.hero-video-floating .video-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-floating .video-play-btn svg {
  fill: #FFFFFF;
  margin-left: 2px;
}

.hero-video-floating span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

/* ==============================================================================
   MURAL / QUICK ACCESS FLOATING BAR
   ============================================================================== */
.mural-section {
  position: relative;
  margin-top: -65px;
  z-index: 10;
  margin-bottom: 70px;
}

.mural-card-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.09);
  border: 1px solid rgba(0, 163, 224, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 24px;
  gap: 16px;
}

.mural-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #EEF3F8;
  background: #FBFDFE;
  transition: var(--transition);
}

.mural-item:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 163, 224, 0.12);
  transform: translateY(-2px);
}

.mural-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mural-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.mural-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.mural-arrow {
  color: var(--primary);
  transition: transform 0.2s ease;
}

.mural-item:hover .mural-arrow {
  transform: translateX(4px);
}

/* ==============================================================================
   NOSSAS UNIDADES SECTION (COM IMAGENS EM ALTA RESOLUÇÃO)
   ============================================================================== */
.section-unidades {
  padding: 30px 0 80px;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.section-link-more:hover {
  color: var(--primary-deep);
  transform: translateX(4px);
}

.unidades-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
}

.unidade-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.unidade-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.unidade-card-featured {
  border: 2px solid rgba(0, 163, 224, 0.45);
  box-shadow: 0 12px 34px rgba(0, 163, 224, 0.14);
}

.unidade-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #E8F4FC;
}

.unidade-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unidade-card:hover .unidade-card-image img {
  transform: scale(1.05);
}

.unidade-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.unidade-card-tag.tag-active {
  background: var(--primary);
}

.unidade-card-tag.tag-soon {
  background: rgba(100, 116, 139, 0.85);
}

.unidade-card-body {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-grow: 1;
}

.unidade-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.unidade-info h3 svg {
  color: var(--primary);
}

.unidade-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.unidade-phone-row {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--primary-deep);
}

.btn-circle-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.unidade-card:hover .btn-circle-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: rotate(-45deg);
}

/* ==============================================================================
   4 PILARES SECTION
   ============================================================================== */
.section-pilares {
  padding: 30px 0 70px;
  background: #FFFFFF;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pilar-card {
  background: #FBFDFE;
  border: 1px solid #EDF3F8;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.pilar-card:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 163, 224, 0.1);
  transform: translateY(-4px);
}

.pilar-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.pilar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

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

/* ==============================================================================
   METRIC STRIP (CYAN GRADIENT RIBBON)
   ============================================================================== */
.metric-strip {
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
}

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

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.metric-item:last-child {
  border-right: none;
}

.metric-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.metric-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
}

/* ==============================================================================
   ENSINOS / SEGMENTOS (ESTRUTURA PERFEITA, PADDING COMPLETO E ÍCONES 100% VISÍVEIS)
   ============================================================================== */
.section-segmentos {
  padding: 80px 0 70px;
  background: #FFFFFF;
}

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

.segmento-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible !important;
}

.segmento-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 163, 224, 0.16);
  transform: translateY(-6px);
}

.segmento-image-wrap {
  position: relative;
  overflow: visible !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.segmento-img-box {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #E8F4FC;
}

.segmento-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.segmento-card:hover .segmento-img-box img {
  transform: scale(1.06);
}

.segmento-badge-icon {
  position: absolute;
  bottom: -14px;
  left: 36px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FFFFFF !important;
  border: 2.5px solid #E0F2FE;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25 !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 8px;
}

.segmento-badge-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.segmento-card:hover .segmento-badge-icon {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 163, 224, 0.38);
  transform: translateY(-3px) scale(1.08);
}

.segmento-card-body {
  padding: 34px 28px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
  background: #FFFFFF;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.segmento-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  margin-top: 0;
}

.segmento-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.segmento-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.segmento-card-footer .btn-circle-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F8FAFD;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.segmento-card:hover .segmento-card-footer .btn-circle-arrow {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 163, 224, 0.35);
}
/* ==============================================================================
   CTA BANNER (VAMOS CONSTRUIR JUNTOS)
   ============================================================================== */
.cta-banner-section {
  padding: 30px 0 80px;
}

.cta-banner-card {
  background: #EEF7FC;
  border: 1.5px solid rgba(0, 163, 224, 0.3);
  border-radius: var(--radius-xl);
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 163, 224, 0.08);
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 163, 224, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.cta-banner-center {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.5;
}

.btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-cyan);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-cta-pill:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 163, 224, 0.35);
}

.btn-cta-pill svg {
  transition: transform 0.2s ease;
}

.btn-cta-pill:hover svg {
  transform: translateX(4px);
}

/* ==============================================================================
   MURAL DO ALUNO PAGE (LISTA DE MATERIAIS, CALENDÁRIO, MANUAL)
   ============================================================================== */
.mural-grid-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.mural-category-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.mural-category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mural-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.mural-pdf-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #F8FAFD;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  transition: var(--transition);
}

.mural-pdf-link:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-deep);
}

/* ==============================================================================
   FOOTER
   ============================================================================== */
.main-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 24px;
}

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

.footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* ==============================================================================
   FOOTER BOTTOM (DIREITOS RESERVADOS & LINKS LEGAIS)
   ============================================================================== */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 10px;
  font-size: 0.8125rem;
}

.footer-bottom-right a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-right a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom-right .footer-sep {
  color: #CBD5E1;
  font-size: 0.75rem;
  user-select: none;
}

/* ==============================================================================
   PÁGINAS LEGAIS (AVISO DE COOKIE, TERMOS DE USO, PRIVACIDADE LGPD)
   ============================================================================== */
.legal-page-section {
  padding: 60px 0 90px;
  background: #F8FAFD;
}

.legal-card {
  max-width: 960px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 35px rgba(10, 37, 64, 0.05);
  padding: 56px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E6F6FD;
  color: #0084B5;
  border: 1px solid #BAE3F7;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.legal-content {
  font-size: 1.03rem;
  line-height: 1.85;
  color: #334155;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.25;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 18px;
  color: #334155;
}

.legal-content strong,
.legal-content b {
  color: #0F172A;
  font-weight: 700;
}

.legal-content ol,
.legal-content ul {
  margin: 20px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-content ol > li,
.legal-content ul > li {
  line-height: 1.75;
  padding-left: 6px;
}

.legal-content ol > li::marker {
  font-weight: 800;
  color: var(--primary);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  background: #FFFFFF;
}

.legal-content table tr:first-child td,
.legal-content table th {
  background: #F1F5F9;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid #CBD5E1;
}

.legal-content table td {
  padding: 16px 20px;
  border: 1px solid #E2E8F0;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-content table tr:nth-child(even) {
  background: #FAFCFF;
}

/* ==============================================================================
   PAGES (HERO, FORMS)
   ============================================================================== */
.page-hero {
  background: linear-gradient(135deg, #0A2540 0%, #16385C 100%);
  color: #FFFFFF;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a {
  color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #FFFFFF;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.15);
}

/* ==============================================================================
   MODAL VIDEO
   ============================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

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

.modal-video-container {
  width: 100%;
  max-width: 850px;
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  aspect-ratio: 16 / 9;
}

.modal-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

/* ==============================================================================
   RESPONSIVE GRID SYSTEM & LAYOUT HELPERS
   ============================================================================== */
.grid-split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-split-2.align-start {
  align-items: start;
}

.grid-split-2.asymmetric {
  grid-template-columns: 1.1fr 0.9fr;
}

.grid-split-2.stage-card {
  grid-template-columns: 1fr 1.15fr;
  background: #F8FAFD;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.grid-split-2.stage-card.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grid-register-page {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.card-responsive-padding {
  padding: 40px;
}

/* ==============================================================================
   RESPONSIVENESS (MOBILE / TABLET)
   ============================================================================== */
@media (max-width: 1280px) {
  .main-nav {
    gap: 6px;
  }
  .nav-link {
    font-size: 0.875rem;
    padding: 6px 8px;
  }
  .btn-cadastre-header {
    padding: 10px 18px;
    font-size: 0.875rem;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 4px;
  }
  .nav-link {
    font-size: 0.8125rem;
    padding: 5px 6px;
  }
  .btn-cadastre-header {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 1024px) {
  /* No tablet/mobile, ativa o botão hamburger */
  .header-menu-btn {
    display: flex !important;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 12px 16px;
  }

  .mobile-only-portal {
    display: block !important;
    width: 100%;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
    padding-top: 8px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
  }

  .nav-item.open .dropdown-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtext {
    margin: 0 auto 30px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-slider-nav {
    justify-content: center;
  }

  /* Grids no tablet */
  .grid-split-2,
  .grid-split-2.asymmetric,
  .grid-split-2.stage-card,
  .grid-split-2.stage-card.reverse,
  .grid-register-page {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }

  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mural-card-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .metric-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .metric-item {
    border-right: none;
  }

  .mural-grid-categories {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  /* Prevenção de overflow fantasma horizontal */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
  }

  img, iframe, video {
    max-width: 100% !important;
    height: auto;
  }

  .container {
    padding: 0 18px;
  }

  .top-bar {
    display: none;
  }

  .header-cta .btn-contact-outline {
    display: none;
  }

  .btn-cadastre-header {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }

  /* Page Heroes */
  .page-hero {
    padding: 44px 0;
    text-align: center;
  }

  .page-breadcrumbs {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .page-hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
  }

  .page-hero-subtitle {
    font-size: 0.975rem;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Home Hero Slider */
  .hero-slide {
    padding: 24px 0 50px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-contact-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-video-trigger {
    justify-content: center;
    margin-top: 6px;
  }

  .hero-image-wrapper img {
    height: 280px;
  }

  .hero-video-floating {
    bottom: 12px;
    right: 12px;
    padding: 6px 14px;
    font-size: 0.8125rem;
  }

  /* Mural Floating Cards */
  .mural-section {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .mural-card-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  /* Grids & Cards em 1 Coluna */
  .grid-split-2,
  .grid-split-2.asymmetric,
  .grid-split-2.stage-card,
  .grid-split-2.stage-card.reverse,
  .grid-register-page,
  .grid-2-cols,
  .grid-3-cols,
  .grid-4-cols {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .card-responsive-padding {
    padding: 24px 18px !important;
  }

  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .segmentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .unidades-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Métricas (Faixa Ciano) */
  .metric-strip {
    padding: 30px 0;
  }

  .metric-strip-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
  }

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

  /* Cabeçalhos de Seções */
  .section-header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .section-title {
    font-size: 1.85rem;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  /* CTA Banner */
  .cta-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 18px;
    gap: 20px;
  }

  .cta-banner-left {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-banner-title {
    font-size: 1.45rem;
    text-align: center;
    line-height: 1.25;
  }

  .cta-banner-center {
    text-align: center;
  }

  .btn-cta-pill {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
  }

  /* ==========================================================================
     FOOTER CENTRALIZADO NO MOBILE (SOLICITADO PELO USUÁRIO)
     ========================================================================== */
  .main-footer {
    padding: 50px 0 28px;
    text-align: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 36px;
    margin-bottom: 40px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-brand img {
    margin: 0 auto 16px auto;
  }

  .footer-brand p {
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 440px;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .footer-col {
    text-align: center;
    width: 100%;
  }

  .footer-col h4 {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-col ul {
    align-items: center;
    text-align: center;
  }

  .footer-col ul a {
    display: inline-block;
    padding: 4px 0;
  }

  .footer-col ul a:hover {
    padding-left: 0;
    opacity: 0.85;
  }

  .legal-page-section {
    padding: 36px 0 60px;
  }

  .legal-card {
    padding: 28px 18px;
    border-radius: var(--radius-lg);
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }

  .legal-content table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 24px;
  }

  .footer-bottom-left {
    text-align: center;
    width: 100%;
    order: 2;
  }

  .footer-bottom-right {
    text-align: center;
    justify-content: center;
    width: 100%;
    gap: 6px 8px;
    order: 1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .page-hero-title {
    font-size: 1.65rem;
  }

  .btn-hero-primary {
    padding: 13px 18px;
    font-size: 0.9375rem;
  }

  .card-responsive-padding {
    padding: 20px 14px !important;
  }

  .hero-video-floating {
    right: 50%;
    transform: translateX(50%);
    bottom: 10px;
    width: max-content;
  }

  .hero-video-floating:hover {
    transform: translateX(50%) translateY(-2px);
  }
}



/* ==============================================================================
   BOTÃO FLUTUANTE DE WHATSAPP OFICIAL RECIFE
   ============================================================================== */


.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  background: #22c35e;
}



.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0A192F;
}

.floating-whatsapp-btn:hover 

70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  
  
}




/* ==============================================================================
   MISSÃO, VISÃO E VALORES (ALTO CONTRASTE E ACABAMENTO PREMIUM)
   ============================================================================== */
.mvv-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mvv-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(0, 163, 224, 0.15);
  transform: translateY(-5px);
}

.mvv-icon-box {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #EEF7FC 0%, #E0F2FE 100%);
  border: 2px solid rgba(0, 163, 224, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0088BE;
  box-shadow: 0 4px 14px rgba(0, 163, 224, 0.18);
  transition: all 0.3s ease;
}

.mvv-icon-box svg {
  display: block;
  stroke: #0088BE;
  transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon-box {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.4);
  transform: scale(1.1);
}

.mvv-card:hover .mvv-icon-box svg {
  stroke: #FFFFFF;
}

.mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

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