/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --primary: #0c1938;        /* Deep Navy Blue */
  --primary-light: #162a56;  /* Lighter Navy */
  --secondary: #c59b6c;      /* Golden Tan / Bronze */
  --secondary-hover: #b48a5b;/* Darker Golden */
  --accent: #3a7ebd;         /* Soft Light Blue */
  --accent-light: #eef5fc;   /* Light Blue Tint */
  --success: #25d366;        /* WhatsApp Green */
  --success-dark: #128c7e;   /* WhatsApp Hover */
  
  /* Neutral Palette */
  --text-main: #1e293b;      /* Dark Slate */
  --text-muted: #64748b;     /* Slate Gray */
  --bg-main: #f8fafc;        /* Soft Cool Gray */
  --bg-white: #ffffff;       /* Pure White */
  --bg-dark: #091225;        /* Deep Navy Dark Mode Background */
  --border-color: #e2e8f0;   /* Light Gray Border */
  
  /* Typography */
  --font-family: 'Outfit', sans-serif;
  --font-family-serif: 'Playfair Display', serif;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  /* Shadows & Effects */
  --shadow-sm: 0 2px 4px rgba(12, 25, 56, 0.05);
  --shadow-md: 0 10px 20px rgba(12, 25, 56, 0.06), 0 4px 6px rgba(12, 25, 56, 0.04);
  --shadow-lg: 0 20px 40px rgba(12, 25, 56, 0.1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  padding: 0.25rem 1rem;
  background-color: rgba(197, 155, 108, 0.1);
  border-radius: 50px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ==========================================================================
   BUTTONS & INTERACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--bg-white);
}

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

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--success);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--success-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.topbar {
  background-color: var(--primary);
  color: var(--bg-white);
  font-size: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-badge {
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background-color: #0c1938;
  background-image: radial-gradient(circle at 10% 20%, rgba(12, 25, 56, 0.95) 0%, rgba(9, 18, 37, 0.98) 90%), url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge-solid {
  background-color: var(--secondary);
  color: var(--primary);
}

.hero-badge-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-badge-success {
  background-color: rgba(37, 211, 102, 0.2);
  color: #a7f3d0;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.hero-title {
  color: var(--bg-white);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--secondary);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-bullets {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-bullet-icon {
  color: var(--secondary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.hero-actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Carousel */
.hero-slider-wrapper {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.slider-main {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: rgba(12, 25, 56, 0.7);
  backdrop-filter: blur(4px);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-nav-btn:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.slider-nav-prev { left: 10px; }
.slider-nav-next { right: 10px; }

.slider-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.thumb-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  opacity: 0.6;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item.active {
  border-color: var(--secondary);
  opacity: 1;
}

/* ==========================================================================
   SUPPORT BAR
   ========================================================================== */
.support-bar {
  background-color: var(--accent-light);
  border-bottom: 1px solid rgba(58, 126, 189, 0.15);
  padding: 1.5rem 0;
}

.support-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.support-icon-circle {
  background-color: var(--accent);
  color: var(--bg-white);
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  max-width: 800px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-group {
  position: relative;
}

.about-main-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
  max-width: 180px;
}

.about-accent-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-accent-txt {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-bg-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--secondary) 20%, transparent 20%);
  background-size: 15px 15px;
  z-index: 1;
}

.about-content-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  gap: 0.8rem;
}

.stat-icon {
  color: var(--secondary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.stat-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

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

/* ==========================================================================
   PROGRAMAS (Adapted from Planos)
   ========================================================================== */
.programs {
  background-color: var(--bg-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.program-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

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

.program-card.featured {
  background-color: var(--primary);
  color: var(--bg-white);
  border-color: var(--secondary);
  border-width: 2px;
}

.program-card.featured .program-title,
.program-card.featured .program-benefit-title,
.program-card.featured .program-bullet {
  color: var(--bg-white);
}

.program-card.featured .program-desc {
  color: rgba(255, 255, 255, 0.7);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.program-icon-circle {
  width: 54px;
  height: 54px;
  background-color: rgba(12, 25, 56, 0.05);
  color: var(--primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.program-card.featured .program-icon-circle {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.program-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.program-divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 2rem;
}

.program-card.featured .program-divider {
  background-color: rgba(255, 255, 255, 0.15);
}

.program-benefit-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.program-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.program-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.program-bullet-icon {
  color: var(--secondary);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
}

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

.service-icon-box {
  width: 50px;
  height: 50px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ESTRUTURA
   ========================================================================== */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.structure-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  group-hover: scale(1.05);
}

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

.structure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 25, 56, 0.9) 0%, rgba(12, 25, 56, 0.3) 50%, rgba(12, 25, 56, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

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

.structure-card:hover .structure-overlay {
  background: linear-gradient(to top, rgba(12, 25, 56, 0.95) 0%, rgba(12, 25, 56, 0.5) 50%, rgba(12, 25, 56, 0.2) 100%);
}

.structure-title {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.structure-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.structure-card:hover .structure-desc {
  max-height: 80px;
  margin-top: 0.25rem;
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.faq-icon-arrow {
  color: var(--secondary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--border-color);
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact {
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
}

.contact-form-wrapper {
  background-color: var(--bg-main);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

.contact-form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(197, 155, 108, 0.15);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Contact Info / Map */
.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.info-header {
  margin-bottom: 2rem;
}

.info-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.info-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
}

.info-icon-wrapper {
  background-color: var(--accent-light);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.info-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-map-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
}

.info-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column-title {
  color: var(--bg-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-about-logo {
  margin-bottom: 1.25rem;
}

.footer-about-text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING COMPONENTS
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--success);
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3), var(--shadow-lg);
  z-index: 9999;
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: var(--success-dark);
  transform: scale(1.1) rotate(10deg);
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 155, 108, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(197, 155, 108, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 155, 108, 0);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .structure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none; /* Hide topbar on mobile to save space */
  }
  .header-actions .btn {
    display: none; /* Hide header action button on mobile */
  }
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 998;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .anchor-bar {
    top: 73px;
  }
  
  .programs-grid, .services-grid, .docs-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-badge-container {
    margin-bottom: 1rem;
  }
  .hero-actions-group .btn {
    width: 100%;
  }
  .structure-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float-icon {
    width: 26px;
    height: 26px;
  }
  .whatsapp-tooltip {
    display: none; /* Hide tooltip on mobile */
  }
}
