@import url("https://use.typekit.net/xgw2asv.css");

:root {
  --font-display:
    "kepler-std", system-ui, -apple-system, "Segoe UI",
    Roboto, Arial, sans-serif;
  --font-body:
    system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --color-primary: #006687;
  --color-destaque: #d3fd00;
  --color-sesi-dark: #18243d;
  --color-sesi-light: #f7f8e9;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  margin-top: 35px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
}

.fw-light {
  font-weight: 300;
}

/* ============================================================
   HERO
   ============================================================ */

#chamada {
  padding: 0;
  background-color: #18243d;
  z-index: 99;
  background-image: url(../images/topo-home.jpg);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  height: 255px;
  align-content: end;
}

#chamada .logo-sesi {
  margin: 3rem 1rem 0 0;
  width: 100px;
}

#chamada .logo {
  align-content: end;
  width: auto;
  height: 90%;
}

@media (min-width: 576px) {
  #chamada {
    height: 440px;
  }
  #chamada .logo {
    width: auto;
    height: 90%;
  }
}

@media (min-width: 992px) {
  #chamada {
    height: 800px;
  }
  #chamada .logo {
    width: auto;
    height: 85%;
  }
}

@media (min-width: 1400px) {
  #chamada {
    height: 800px;
  }
  #chamada .logo {
    width: auto;
    height: 80%;
  }
}

/* ============================================================
   SECTIONS — BASE
   ============================================================ */

.section {
  padding: 5rem 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }
}

.section-light {
  background-color: #f7f8e9;
}

.section-dark {
  background-color: #18243d;
  color: rgba(255, 255, 255, 0.9);
}

.hero {
  background-color: #006687;
  color: rgba(255, 255, 255, 0.9);
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.hero .section-title {
  color: #fff;
}

/* Hero — feature card variant */

.hero .feature-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.hero .feature-card:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero .feature-card .feature-icon {
  background-color: rgba(255, 255, 255, 0.15);
}

.hero .feature-card .feature-icon i {
  color: #d3fd00;
}

.hero .feature-card h3 {
  color: #fff;
}

.hero .feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
  margin-bottom: 3rem;
}

@media (max-width: 767.98px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-header.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.25rem;
  color: #006687;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d3fd00;
  margin-top: 0.75rem;
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #838383;
  max-width: 650px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   INTRO HIGHLIGHT
   ============================================================ */

.intro-highlight {
  font-size: 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #d3fd00;
  line-height: 1.4;
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .intro-highlight {
    font-size: 1.2rem;
  }
}

.lead-text {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.85;
}

/* ============================================================
   STAT ITEMS
   ============================================================ */

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: #006687;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .stat-item .stat-number {
    font-size: 2.5rem;
  }
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.4;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  padding: 2rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(0, 102, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card .feature-icon i {
  font-size: 1.5rem;
  color: #006687;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #18243d;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.7;
}

.feature-card.text-center .feature-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Feature card — dark variant */

.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-dark .feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.section-dark .feature-card .feature-icon {
  background-color: rgba(211, 253, 0, 0.15);
}

.section-dark .feature-card .feature-icon i {
  color: #d3fd00;
}

.section-dark .feature-card h3 {
  color: #fff;
}

.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   OBJECTIVE LIST
   ============================================================ */

.objective-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.objective-list li {
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.7;
}

.objective-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 102, 135, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23006687'%3E%3Cpath d='M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.objective-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   PROGRAM TRACKS
   ============================================================ */

.program-track { 
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
}

@media (max-width: 767.98px) {
  .program-track {
    padding: 1.75rem;
  }
}

.program-track .track-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background-color: rgba(211, 253, 0, 0.15);
  color: #d3fd00;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.program-track .track-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .program-track .track-title {
    font-size: 1.15rem;
  }
}

.program-track .track-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: track;
}

.track-list li {
  padding: 0.85rem 0 0.85rem 2.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  counter-increment: track;
}

.track-list li::before {
  content: counter(track, upper-roman);
  position: absolute;
  left: 0;
  top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: #d3fd00;
}

.track-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   AUDIENCE CARDS
   ============================================================ */

.audience-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.audience-card:hover {
  border-color: #006687;
  box-shadow: 0 4px 24px rgba(0, 102, 135, 0.1);
}

.audience-card .audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(0, 102, 135, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.audience-card .audience-icon i {
  font-size: 1.75rem;
  color: #006687;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #18243d;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.9rem;
  color: #838383;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */

.contact-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-card:hover {
  border-color: #006687;
  box-shadow: 0 4px 20px rgba(0, 102, 135, 0.1);
}

.contact-card .contact-region {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #18243d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card .contact-region i {
  color: #006687;
  font-size: 1.2rem;
}

.contact-card .contact-email a {
  font-size: 0.85rem;
  color: #006687;
  text-decoration: none;
  word-break: break-all;
}

.contact-card .contact-email a:hover {
  text-decoration: underline;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background-color: #006687;
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background-color: #d3fd00;
  color: #18243d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section .btn-cta:hover {
  background-color: #dbfe33;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  padding: 3rem 0;
  background-color: #18243d;
  color: rgba(255, 255, 255, 0.6);
}

footer p {
  margin-bottom: 0;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */

[data-aos] {
  pointer-events: auto !important;
}
