:root {
  --navy: #061326;
  --navy-2: #101d35;
  --orange: #f4a000;
  --orange-2: #ffb629;
  --purple: #5b188e;
  --purple-2: #7b28b4;
  --sky: #eaf6ff;
  --text: #172033;
  --muted: #6b7280;
  --white: #ffffff;
  --soft: #f7f4ef;
  --border: rgba(6, 19, 38, 0.12);
  --shadow: 0 22px 70px rgba(6, 19, 38, 0.16);
  --radius: 28px;
  --green: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffdf9;
  overflow-x: hidden;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

section{overflow:hidden;}
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: all 0.45s ease;
}

.loader-card {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.loader-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  font-size: 34px;
  animation: pulse 1.2s ease-in-out infinite;
}

img {
  max-width: 100%;
}

.min-vh-lg-100 {
  min-height: 100vh;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 19, 38, 0.08);
  transition: 0.3s ease;
  padding-block: 14px;
}

.glass-nav.scrolled {
  box-shadow: 0 12px 35px rgba(6, 19, 38, 0.09);
  padding-block: 8px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: white;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(244, 160, 0, 0.34);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--navy);
}

.brand-text strong {
  font-size: 17px;
  font-weight: 900;
}

.brand-text small {
  font-size: 12px;
  color: var(--purple);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 800;
  color: var(--navy) !important;
  border-radius: 999px;
  padding-inline: 14px !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--purple) !important;
  background: rgba(91, 24, 142, 0.08);
}

.nav-btn {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 18px !important;
}

.nav-btn:hover {
  background: var(--purple) !important;
  color: #fff !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 0px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(244,160,0,.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(91,24,142,.16), transparent 30%),
    linear-gradient(135deg, #fdf9ef 0%, #eef8ff 52%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.4;
}

.shape-one {
  width: 420px;
  height: 420px;
  background: rgba(244, 160, 0, 0.18);
  top: -170px;
  right: -140px;
}

.shape-two {
  width: 330px;
  height: 330px;
  background: rgba(91, 24, 142, 0.13);
  bottom: 60px;
  left: -160px;
}

.hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badge span,
.section-label {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  color: var(--purple);
  border: 1px solid rgba(91, 24, 142, 0.15);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(6, 19, 38, 0.06);
}

.hero-badge span:first-child {
  color: var(--navy);
}

.eyebrow {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.hero-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.9;
  margin: 0 0 18px;
  color: var(--orange);
  text-shadow: 0 12px 45px rgba(244, 160, 0, 0.18);
}

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

.sub-strip {
  display: inline-block;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 15px 22px;
  border-radius: 0 18px 18px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-left: 7px solid var(--orange);
  box-shadow: var(--shadow);
}

.sub-strip strong {
  color: var(--orange-2);
}

.hero-text,
.section-text {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 710px;
  margin-top: 22px;
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.meta-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(6,19,38,.1);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(6,19,38,.08);
}

.meta-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  color: #fff;
  font-size: 20px;
  flex: 0 0 auto;
}

.meta-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.meta-card strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--orange), #ffb62e);
  border: 0;
  color: var(--navy) !important;
  font-weight: 950;
  border-radius: 999px;
  padding: 14px 24px;
  box-shadow: 0 16px 36px rgba(244, 160, 0, 0.3);
  transition: 0.3s ease;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(244, 160, 0, 0.4);
}

.hero-call {
  color: #fff !important;
  background: var(--navy);
  border-color: rgba(255,255,255,.25);
  border-radius: 999px;
  font-weight: 900;
}

.hero-call:hover {
  background: var(--purple);
  border-color: var(--purple);
}

.hero-visual-wrap {
  position: relative;
  padding: 28px;
}

.hero-image-card,
.trainer-photo-card,
.venue-image-card {
  position: relative;
  border-radius: 36px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(6, 19, 38, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-card::before,
.trainer-photo-card::before,
.venue-image-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 160, 0, 0.35);
  border-radius: 26px;
  pointer-events: none;
  z-index: 2;
}

.floating-card,
.association-card {
  position: absolute;
  z-index: 4;
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(6,19,38,.22);
  animation: floatY 4s ease-in-out infinite;
}

.demo-card {
  top: 18px;
  left: -8px;
  max-width: 250px;
}

.demo-card i {
  color: var(--orange);
  font-size: 31px;
}

.demo-card strong,
.association-card strong {
  display: block;
  font-weight: 950;
  line-height: 1.2;
}

.demo-card span,
.association-card small,
.association-card span {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
}

.association-card {
  right: -4px;
  bottom: 16px;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(91, 24, 142, 0.22);
}

.association-card span,
.association-card small {
  color: var(--muted);
}

.association-card strong {
  color: var(--purple);
}

.stats-section {
  margin-top: -54px;
  position: relative;
  z-index: 10;
}

.stats-panel {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 19, 38, 0.1);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stat-item {
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f9f7f2);
  border: 1px solid rgba(6,19,38,.07);
}

.stat-item i {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(91, 24, 142, 0.1);
  color: var(--purple);
  font-size: 26px;
  margin-bottom: 12px;
  animation: iconBounce 2.4s ease-in-out infinite;
}

.stat-item strong {
  display: block;
  color: var(--navy);
  font-weight: 950;
  font-size: 18px;
}

.stat-item span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

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

.section-label {
  background: rgba(91, 24, 142, 0.08);
  box-shadow: none;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 950;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.max-text {
  max-width: 680px;
}

.overview-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.overview-list div,
.expert-points div,
.why-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 850;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(6,19,38,.05);
}

.overview-list i,
.expert-points i,
.why-grid i {
  color: var(--orange);
  font-size: 20px;
}

.training-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.training-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(244,160,0,.14);
  border-radius: 50%;
  right: -90px;
  top: -90px;
}

.training-card h3 {
  position: relative;
  z-index: 2;
  font-weight: 950;
  margin-bottom: 22px;
}

.training-card h3 i {
  color: var(--orange);
}

.training-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.training-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px;
  font-weight: 900;
}

.training-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #7d2fba);
  flex: 0 0 auto;
}

.trainer-section,
.faq-section {
  background: linear-gradient(180deg, #fff, #fbf6ec);
}

.trainer-photo-card {
  padding: 18px;
  background: linear-gradient(135deg, #f7fbff, #fff5df);
}

.trainer-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(91, 24, 142, .24);
}

.trainer-subtitle {
  color: var(--purple);
  font-weight: 950;
  font-size: 1.2rem;
  margin-top: 8px;
}

.expert-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--navy));
  color: #fff;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 950;
  margin-top: 10px;
}

.expert-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.day-card {
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 19, 38, .1);
  padding: 30px;
  box-shadow: 0 20px 56px rgba(6, 19, 38, .09);
  position: relative;
  overflow: hidden;
}

.day-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
}

.day-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.day-header span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 950;
  padding: 9px 16px;
  text-transform: uppercase;
}

.day-header strong {
  color: var(--purple);
  font-weight: 950;
}

.day-card h3 {
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 18px;
}

.day-card ul {
  padding-left: 20px;
  margin: 0;
}

.day-card li {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 12px;
  line-height: 1.55;
}

.featured-day {
  background: linear-gradient(180deg, #fff, #fbf3ff);
}

.invest-section {
  background: linear-gradient(135deg, var(--navy) 0%, #111f3a 56%, #25133a 100%);
}

.audience-card,
.why-card {
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.audience-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}

.audience-card .section-label,
.enroll-copy .section-label {
  background: rgba(255,255,255,.1);
  color: var(--orange);
  border-color: rgba(255,255,255,.16);
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.audience-item i {
  font-size: 32px;
  color: var(--orange);
}

.audience-item strong,
.audience-item span {
  display: block;
}

.audience-item strong {
  font-weight: 950;
}

.audience-item span {
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.why-card {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.course-price-mini {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff6df, #f6f0ff);
  border: 1px solid rgba(6,19,38,.08);
}

.course-price-mini span {
  color: var(--muted);
  font-weight: 850;
}

.course-price-mini strong {
  font-family: "Anton", sans-serif;
  color: var(--navy);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-right: auto;
}

.venue-image-card {
  padding: 18px;
}

.venue-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(6,19,38,.08);
  margin: 26px 0;
}

.venue-box i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(244, 160, 0, 0.14);
  color: var(--orange);
  font-size: 26px;
}

.venue-box strong,
.venue-box span {
  display: block;
}

.venue-box strong {
  color: var(--navy);
  font-weight: 950;
}

.venue-box span {
  color: var(--muted);
  font-weight: 750;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.enroll-section {
  background: radial-gradient(circle at 25% 15%, rgba(244,160,0,.22), transparent 30%), linear-gradient(135deg, var(--navy), #211334);
  color: #fff;
}

.enroll-copy p {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}

.enroll-info-card {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.enroll-info-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  font-weight: 900;
}

.enroll-info-card i {
  color: var(--orange);
  font-size: 23px;
}

.form-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-card p {
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 750;
}

.form-label {
  font-weight: 900;
  color: var(--navy);
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: rgba(6,19,38,.13);
  font-weight: 750;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 0.22rem rgba(91, 24, 142, .12);
}

.form-note {
  color: var(--muted);
  font-weight: 750;
}

.custom-accordion .accordion-item {
  border: 0;
  background: transparent;
  margin-bottom: 14px;
}

.custom-accordion .accordion-button {
  border-radius: 18px !important;
  font-weight: 950;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(6,19,38,.06);
  border: 1px solid rgba(6,19,38,.08);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: #fff;
}

.custom-accordion .accordion-body {
  background: #fff;
  border-radius: 0 0 18px 18px;
  color: var(--muted);
  font-weight: 750;
}


.gallery-section {
  background: linear-gradient(180deg, #fffdf9, #eef8ff 48%, #ffffff);
  position: relative;
  overflow: hidden;
}

.gallery-card {
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 52px rgba(6,19,38,.12);
  position: relative;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 64px rgba(6,19,38,.18);
}

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

.gallery-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: rgba(6, 19, 38, .9);
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 950;
  backdrop-filter: blur(8px);
}

.gallery-modal .modal-content {
  background: rgba(6,19,38,.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  overflow: hidden;
}

.gallery-modal .modal-title {
  font-weight: 950;
}

.gallery-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-modal .modal-body {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px 70px;
}

.lightbox-stage {
  width: 100%;
  height: 68vh;
  display: grid;
  place-items: center;
  overflow: auto;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
  transition: transform .25s ease;
  transform-origin: center center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
  transition: .25s ease;
  z-index: 5;
}

.lightbox-nav:hover {
  background: var(--orange);
  color: var(--navy);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.included-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,24,142,.08);
  color: var(--purple) !important;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950 !important;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.76);
  margin-top: 8px;
  font-weight: 800;
}

.mobile-action-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1200;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 15px;
  background: rgba(6, 19, 38, .94);
  box-shadow: 0 18px 44px rgba(6,19,38,.28);
  backdrop-filter: blur(14px);
}

.mobile-action-item {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 9px;
  border-radius: 16px;
  padding: 6px 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.mobile-action-item i {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
  color: var(--orange);
  animation: mobileIconPulse 1.7s ease-in-out infinite;
}

.mobile-action-item.whatsapp i { color: var(--green); }
.mobile-action-item.apply i { color: var(--orange-2); }
.mobile-action-item:hover { color: #fff; transform: translateY(-2px); }

@keyframes mobileIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18) rotate(-4deg); }
}

.footer-section {
  background: var(--navy);
  color: #fff;
  padding: 46px 0 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand strong {
  font-weight: 950;
  font-size: 1.25rem;
}

.footer-brand p {
  color: rgba(255,255,255,.68);
  margin: 4px 0 0;
}

.footer-section hr {
  border-color: rgba(255,255,255,.16);
  margin: 28px 0;
}

.footer-bottom {
  color: rgba(255,255,255,.62);
  font-weight: 750;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 888;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .34);
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: scale(1.04);
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s ease, transform .85s ease;
  transition-delay: var(--delay, 0ms);
}

[data-animate="fade-right"] {
  transform: translateX(-45px);
}

[data-animate="fade-left"] {
  transform: translateX(45px);
}

[data-animate="zoom-in"] {
  transform: scale(.92);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45), 0 18px 44px rgba(37, 211, 102, .34); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 18px 44px rgba(37, 211, 102, .34); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 18px 44px rgba(37, 211, 102, .34); }
}

@media (max-width: 1199.98px) {
  .hero-meta-grid,
  .expert-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .min-vh-lg-100 {
    min-height: auto;
  }

  .hero-section {
    padding-top: 12px;
  }

  .navbar-collapse {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 18px 44px rgba(6, 19, 38, .12);
  }

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

  .hero-visual-wrap {
    padding: 12px 0 60px;
  }

  .demo-card {
    left: 8px;
  }

  .association-card {
    right: 8px;
    bottom: 0;
  }
}

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

  .hero-section {
    padding-bottom: 12px;
  }

  .hero-meta-grid,
  .expert-points,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .sub-strip {
    border-radius: 18px;
    border-left: 0;
    border-top: 6px solid var(--orange);
  }

  .floating-card,
  .association-card {
    position: relative;
    inset: auto;
    margin: 14px 0;
  }

  .hero-visual-wrap {
    padding: 0;
  }

  .training-card,
  .audience-card,
  .why-card,
  .form-card,
  .day-card {
    padding: 24px;
    border-radius: 24px;
  }

  .course-price-mini strong {
    margin-right: 0;
    width: 100%;
  }

  body {
    padding-bottom: 86px;
  }

  .footer-section {
    padding-bottom: 110px;
  }

  .floating-whatsapp {
    display: none;
  }

  .gallery-modal .modal-body {
    padding: 18px 54px;
    min-height: 60vh;
  }

  .lightbox-stage {
    height: 60vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }
}

@media (max-width: 575.98px) {
	.navbar a{margin:auto}
  .hero-section {
    padding-top: 15px;
  }
section{padding-left:35px;padding-right:35px}
  .hero-badge span,
  .section-label {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .eyebrow {
    font-size: 2.41rem;
  }

  .hero-title {
    font-size: 3.5rem;
	line-height:65px
  }

  .meta-card,
  .venue-box,
  .audience-item {
    align-items: flex-start;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}
