/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: #1E2D3D; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --teal-dark:    #003A5D;
  --teal:         #007A8A;
  --teal-light:   #007A8A;
  --purple:       #69488E;
  --purple-light: #69488E;
  --purple-bg:    #69488E;
  --bg-gray:      #F4F4F4;
  --bg-card:      #EFEFEF;
  --white:        #FFFFFF;
  --text-dark:    #003A5D;
  --text-body:    #003A5D;
  --text-muted:   #718096;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-pill:  50px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
p { line-height: 1.7; color: var(--text-body); }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 69vw;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Avenir Next Rounded Std', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46,158,154,0.35);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,158,154,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: #fff;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge--outline-teal {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: rgba(255,255,255,0.85);
}

/* ===== HIGHLIGHT CARD ===== */
.highlight-card {
  background: #EDEDED;
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
}
.highlight-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #9578D3;
  line-height: 1.8;
}
.highlight-card strong { color: #9578D3; font-style: normal; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Avenir Next Rounded Std', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title.violeta {
  color: var(--purple);
}

/* ===== WAVE DIVIDER ===== */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ===== ANIMATE CLASSES (initial states for GSAP) ===== */
.anim-fade-up   { opacity: 0; transform: translateY(40px); }
.anim-fade-left { opacity: 0; transform: translateX(-40px); }
.anim-fade-right{ opacity: 0; transform: translateX(40px); }
.anim-scale     { opacity: 0; transform: scale(0.9); }

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-fade-left, .anim-fade-right, .anim-scale {
    opacity: 1 !important; transform: none !important;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
  }
}