@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-accent: #fbbf24;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 90px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-text);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  position: relative;
  z-index: 101;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  transition: opacity 0.2s ease;
}
@media (max-width: 992px) {
  .header-toggle {
    display: flex;
    order: 3;
  }
}
.header-toggle:hover {
  opacity: 0.8;
}
.header-toggle[aria-expanded=true] .header-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-toggle[aria-expanded=true] .header-toggle__bar:nth-child(2) {
  opacity: 0;
}
.header-toggle[aria-expanded=true] .header-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #2756C5;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}
@media (max-width: 992px) {
  .header-brand {
    flex: 1;
    order: 1;
  }
}

.header-brand__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.header-brand__logo {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 576px) {
  .header-brand__logo {
    width: 60px;
    height: 60px;
  }
}

.header-brand__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .header-brand__text {
    display: none;
  }
}

.header-brand__name,
.header-brand__tipcollege-text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2756C5;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .header-brand__name,
  .header-brand__tipcollege-text {
    font-size: 1rem;
  }
}

.header-brand__logo-tipcollege {
  width: 111px;
  height: auto;
  max-height: 77px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .header-brand__logo-tipcollege {
    width: 70px;
    max-height: 50px;
  }
}

@media (max-width: 992px) {
  .header-brand__tipcollege-text {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 90px;
    right: 0;
    left: 0;
    height: calc(100vh - 90px);
    width: 100%;
    max-width: 100%;
    z-index: 9998;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
  }
  .header-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

.nav-menu__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: #475569;
  transition: color 0.3s ease;
}
.nav-menu__link:hover {
  color: #2756C5;
}
@media (max-width: 992px) {
  .nav-menu__link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
  }
}

.header-dropdown {
  position: relative;
}
.header-dropdown.is-open .header-dropdown__panel {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media (max-width: 992px) {
  .header-dropdown {
    width: 100%;
  }
}

.header-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s ease;
}
.header-dropdown__trigger:hover {
  color: #2756C5;
}
.header-dropdown__trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.header-dropdown__trigger[aria-expanded=true] .header-dropdown__chevron {
  transform: rotate(180deg);
}

.header-dropdown__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.header-dropdown__panel[hidden] {
  display: none !important;
}

@media (max-width: 992px) {
  .header-dropdown {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .header-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

.header-dropdown__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  padding: 0.375rem;
  background: #fff;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s;
  z-index: 200;
}
.header-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 1.25rem;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(30, 41, 59, 0.08);
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  transform: rotate(45deg);
}
.header-dropdown__panel--right {
  left: auto;
  right: 0;
  transform-origin: top right;
}
.header-dropdown__panel--right::before {
  left: auto;
  right: 1.25rem;
  border-left: none;
  border-right: 1px solid rgba(30, 41, 59, 0.08);
  transform: rotate(45deg);
}
@media (max-width: 992px) {
  .header-dropdown__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 0.25rem;
    padding: 0.5rem 0 0 1rem;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-left: 3px solid #2756C5;
  }
  .header-dropdown__panel::before {
    display: none;
  }
  .header-dropdown__panel[hidden] {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .site-header .header-dropdown.is-open .header-dropdown__panel {
    display: block !important;
  }
}

.header-dropdown__link {
  display: block;
  padding: 0.5rem 0.75rem;
  margin: 0.125rem 0;
  font-size: 0.9rem;
  color: #475569;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.header-dropdown__link:first-child {
  margin-top: 0;
}
.header-dropdown__link:last-child {
  margin-bottom: 0;
}
.header-dropdown__link:hover {
  background-color: #f8fafc;
  color: #2756C5;
}
.header-dropdown__link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}

.header-cta__btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
  background-color: #FFDB26;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.15s ease;
  white-space: nowrap;
}
.header-cta__btn:hover {
  background-color: #2756C5;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 992px) {
  .header-cta__btn {
    text-align: center;
    padding: 0.85rem 1.5rem;
  }
}

.block-banner {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.block-banner__video-wrap {
  position: absolute;
  inset: 0;
}

.block-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.block-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 35, 75, 0.9) 0%, rgba(30, 41, 59, 0.7) 40%, rgba(39, 86, 197, 0.3) 100%);
  z-index: 1;
}

.block-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.block-banner__content {
  max-width: 540px;
}

.block-banner__title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.block-banner__text {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

[data-animate-onload] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate-onload].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate-onload] {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms;
  }
}
.block-mvv {
  padding: 5.5rem 0;
  background: #fff;
}

.block-mvv__inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.block-mvv__header {
  margin-bottom: 1.75rem;
}

.block-mvv__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.5rem;
}

.block-mvv__section-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #2756C5;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.block-mvv__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .block-mvv__intro {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.block-mvv__content {
  max-width: 560px;
}

.block-mvv__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2756C5;
  line-height: 1.4;
}

.block-mvv__body .block-mvv__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2756C5;
  line-height: 1.4;
}
.block-mvv__body p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #1e293b;
}
.block-mvv__body p:last-of-type {
  margin-bottom: 1.25rem;
}

.block-mvv__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #1e293b;
}
.block-mvv__text:last-of-type {
  margin-bottom: 1.25rem;
}

.block-mvv__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2756C5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.block-mvv__link:hover {
  opacity: 0.8;
}
.block-mvv__link::after {
  content: "→";
  font-weight: 700;
}

.block-mvv__media {
  position: relative;
  order: -1;
}
@media (min-width: 992px) {
  .block-mvv__media {
    order: 0;
  }
}

.block-mvv__media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.block-mvv__media-wrap--video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-mvv__media-wrap.is-playing .block-mvv__play {
  opacity: 0;
  pointer-events: none;
}
.block-mvv__media-wrap.is-playing:hover .block-mvv__play {
  opacity: 1;
  pointer-events: auto;
}

.block-mvv__media-img,
.block-mvv__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-mvv__media-video {
  display: block;
  border-radius: 20px;
}

.block-mvv__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 68, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.block-mvv__play:hover {
  background: rgba(15, 39, 68, 0.35);
}

.block-mvv__play-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2756C5;
  color: #fff;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.block-mvv__play-icon svg {
  width: 24px;
  height: 24px;
}

.block-mvv__sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .block-mvv__sections {
    grid-template-columns: repeat(5, 1fr);
  }
}

.block-mvv__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .block-mvv__item {
    padding: 2rem 1.5rem;
    border-bottom: none;
    border-right: 1px solid #e2e8f0;
  }
  .block-mvv__item:last-child {
    border-right: none;
  }
}
.block-mvv__item:last-child {
  border-bottom: none;
}

.block-mvv__item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 86, 197, 0.1);
  color: #2756C5;
  border-radius: 20px;
}
.block-mvv__item-icon svg {
  width: 24px;
  height: 24px;
}

.block-mvv__item-body {
  flex: 1;
  min-width: 0;
}

.block-mvv__item-title {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2756C5;
  line-height: 1.3;
}

.block-mvv__item-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.block-methodology {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.block-methodology__inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.block-methodology__header {
  max-width: 720px;
}

.block-methodology__label {
  display: inline-block;
  padding: 0.4rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #2756C5;
  border: none;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.block-methodology__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.35;
  color: #1e293b;
}
.block-methodology__title strong,
.block-methodology__title .block-methodology__highlight {
  font-weight: 700;
  color: #2756C5;
}

.block-methodology__intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.block-methodology__slider-wrap {
  position: relative;
  padding: 0 3rem;
}

.block-methodology__slider-viewport {
  overflow: hidden;
  margin: 0 -0.75rem;
}

.block-methodology__slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.block-methodology__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  min-width: 100%;
}

.block-methodology__card {
  flex: 0 0 calc(100% - 1rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  user-select: none;
  overflow: hidden;
}
@media (min-width: 576px) {
  .block-methodology__card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (min-width: 768px) {
  .block-methodology__card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
@media (min-width: 992px) {
  .block-methodology__card {
    flex: 0 0 calc(25% - 1.125rem);
  }
}
.block-methodology__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 39, 68, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.block-methodology__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #f8fafc;
}
.block-methodology__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-methodology__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2756C5;
  color: #fff;
  border-radius: 50%;
  margin: 1.5rem 2rem 1.25rem;
}
.block-methodology__card-icon svg {
  width: 26px;
  height: 26px;
}

.block-methodology__card-title {
  margin: 0 2rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

.block-methodology__card-desc {
  margin: 0 2rem 2rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #475569;
}

.block-methodology__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(39, 86, 197, 0.2);
  border-radius: 50%;
  color: #2756C5;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  z-index: 2;
}
.block-methodology__nav svg {
  width: 24px;
  height: 24px;
}
.block-methodology__nav:hover {
  background: #2756C5;
  color: #fff;
  border-color: #2756C5;
  transform: translateY(-50%) scale(1.05);
}
.block-methodology__nav--prev {
  left: 0;
}
.block-methodology__nav--next {
  right: 0;
}
.block-methodology__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.block-methodology__nav:disabled:hover {
  background: #fff;
  color: #2756C5;
  border-color: rgba(39, 86, 197, 0.2);
  transform: translateY(-50%);
}

.block-methodology__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.block-methodology__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(39, 86, 197, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.block-methodology__dot:hover {
  background: rgba(39, 86, 197, 0.5);
}
.block-methodology__dot.is-active {
  background: #2756C5;
  transform: scale(1.2);
}

[data-motion-hover] {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
[data-motion-hover]:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  [data-motion-hover]:hover {
    transform: none;
  }
}
.block-ensino {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.block-ensino__inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.block-ensino__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .block-ensino__panel--img-right .block-ensino__post {
    flex-direction: row-reverse;
  }
}

.block-ensino__post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 24px rgba(15, 39, 68, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
@media (min-width: 992px) {
  .block-ensino__post {
    flex-direction: row;
  }
}
.block-ensino__post:hover {
  box-shadow: 0 12px 40px rgba(15, 39, 68, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.block-ensino__post-img {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@media (min-width: 992px) {
  .block-ensino__post-img {
    width: 45%;
    aspect-ratio: 4/3;
  }
}
.block-ensino__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-ensino__panel-age {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(39, 86, 197, 0.9);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

.block-ensino__post-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .block-ensino__post-body {
    padding: 2.5rem 2.5rem 2rem;
    flex: 1;
    justify-content: center;
  }
}

.block-ensino__panel-label {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.block-ensino__panel-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #1e293b;
}

.block-ensino__panel-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.block-ensino__panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #2756C5;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.block-ensino__panel-btn:hover {
  background: #2047a2;
  transform: translateY(-1px);
}

.block-ensino__panel--tip-college .block-ensino__panel-btn {
  background: #1a3a8a;
}
.block-ensino__panel--tip-college .block-ensino__panel-btn:hover {
  background: #163375;
  transform: translateY(-1px);
}
.block-ensino__panel--tip-college .block-ensino__panel-age {
  background: rgba(26, 58, 138, 0.9);
}

.block-cta {
  padding: 4rem 1rem;
}

.block-cta__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #2756C5 0%, #1e45a8 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(39, 86, 197, 0.25), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.block-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.block-cta__text {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.block-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2756C5;
  background: #fff;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.block-cta__btn:hover {
  background: #FFDB26;
  color: #2254ab;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.block-cta__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.block-cta__btn-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2756C5;
  color: #fff;
  border-radius: 50%;
}
.block-cta__btn-icon svg {
  width: 14px;
  height: 14px;
}

.block-blog {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.block-blog__inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.block-blog__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.block-blog__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1e293b;
}

.block-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .block-blog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.block-blog__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.block-blog__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15, 39, 68, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-color: rgba(39, 86, 197, 0.15);
}

.block-blog__card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.block-blog__card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
.block-blog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.block-blog__card:hover .block-blog__card-img img {
  transform: scale(1.03);
}

.block-blog__card-body {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.block-blog__card-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2756C5;
  margin-bottom: 0.5rem;
}

.block-blog__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

.block-blog__card-excerpt {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  flex: 1;
}

.block-blog__card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2756C5;
  transition: gap 0.3s ease;
}

.block-blog__card:hover .block-blog__card-more {
  gap: 0.5rem;
}

.block-blog__card-more::after {
  content: " →";
}

.block-map {
  width: 100%;
}

.block-map__wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 450px;
  max-height: 450px;
  overflow: hidden;
}

.block-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.block-map__link {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #2756C5;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(39, 86, 197, 0.4);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.block-map__link:hover {
  background: #1e45a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(39, 86, 197, 0.45);
}

.site-footer {
  background: linear-gradient(180deg, #2756C5 0%, #1e45a8 100%);
  color: #fff;
  font-size: 0.9375rem;
}

.site-footer__inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 4.5rem 1rem 3.5rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .site-footer__top {
    grid-template-columns: auto 1fr 1fr 1fr auto;
    gap: 2rem 3rem;
    align-items: start;
  }
}

@media (min-width: 992px) {
  .site-footer__col--brand {
    grid-column: 1;
  }
}

@media (min-width: 992px) {
  .site-footer__col--social {
    grid-column: 5;
  }
}

.site-footer__brands {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand {
  display: inline-block;
}

.site-footer__logo {
  display: block;
  width: 70px;
  height: auto;
}

.site-footer__logo-tipcollege {
  width: 80px;
  height: auto;
  max-height: 71px;
  object-fit: contain;
}

.site-footer__title {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__list li {
  margin-bottom: 0.65rem;
}
.site-footer__list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__list a:hover {
  color: #fff;
}

.site-footer__contact {
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.site-footer__contact:last-child {
  margin-bottom: 0;
}
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.25s ease;
}
.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.site-footer__social-link svg {
  flex-shrink: 0;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 2rem;
}

.site-footer__bottom {
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-piscar 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@keyframes whatsapp-piscar {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.2), 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

/*# sourceMappingURL=style.css.map */
