:root {
  --gpol-black: #05070a;
  --gpol-ink: #0b1420;
  --gpol-navy: #101f33;
  --gpol-blue: #163b63;
  --gpol-teal: #00b2a9;
  --gpol-yellow: var(--gpol-teal);
  --gpol-white: #ffffff;
  --gpol-muted: #647084;
  --gpol-line: #dce2ea;
  --gpol-soft: #f4f7fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif !important;
  color: var(--gpol-ink);
  background: var(--gpol-white);
}

h1,
h2,
h3,
h4,
.gpol-site-header a {
  font-family: "Oswald", "Inter", Arial, sans-serif !important;
  letter-spacing: 0;
}

.gpol-header-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gpol-white);
  box-shadow: 0 12px 30px rgba(5, 7, 10, .12);
}

.gpol-topbar {
  background: var(--gpol-black);
  color: var(--gpol-white);
  font-size: 13px;
}

.gpol-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gpol-topbar a,
.gpol-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gpol-white);
  white-space: nowrap;
}

.gpol-topbar i {
  color: var(--gpol-yellow);
}

.gpol-site-header.header__area,
.gpol-header-shell .header__area-sticky-menu {
  position: static;
  animation: none;
  box-shadow: none;
}

.gpol-site-header {
  min-height: 78px;
  padding: 0 32px;
  background: rgba(255, 255, 255, .98);
}

.gpol-site-header__logo {
  max-width: 170px;
  flex: 0 0 170px;
  padding: 0;
}

.gpol-site-header__logo a img {
  max-width: 142px;
}

.gpol-site-header__logo a img.gpol-brand-logo--gcivil {
  max-width: 168px;
}

.gpol-site-header__center {
  flex: 1;
  padding: 0;
  justify-content: flex-end;
  gap: 18px;
}

.gpol-site-header .header__area-main-menu ul li a {
  padding: 28px 12px;
  font-size: 14px;
  line-height: 20px;
  color: var(--gpol-ink);
  font-weight: 700;
}

.gpol-site-header .header__area-main-menu ul li.header__area-main-menu-icon > a {
  padding-right: 26px;
}

.gpol-site-header .header__area-main-menu-icon > a::before {
  right: 11px;
}

.gpol-site-header .header__area-main-menu-icon > a::after {
  right: 8px;
}

.gpol-site-header .header__area-main-menu ul li:hover > a {
  color: var(--gpol-teal);
}

.gpol-site-header .header__area-main-menu ul li.is-active > a {
  color: var(--gpol-teal);
}

.gpol-site-header .header__area-main-menu > ul > li.is-active > a {
  box-shadow: inset 0 -3px 0 var(--gpol-teal);
}

.gpol-site-header .header__area-main-menu ul li .sub-menu li.is-active > a {
  color: var(--gpol-teal);
  background: rgba(0, 178, 169, .1);
}

.gpol-site-header .header__area-main-menu ul li .sub-menu {
  border-top-color: var(--gpol-yellow);
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}

.gpol-site-header .header__area-main-menu ul li.header__area-main-menu-icon:hover > .sub-menu {
  top: 120%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gpol-site-header .header__area-main-menu ul li.header__area-main-menu-icon.is-open > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gpol-site-header .header__area-main-menu-icon.is-open > a::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.gpol-site-header .header__area-main-menu ul li .sub-menu li a {
  padding: 13px 20px;
  font-size: 15px;
  font-family: "Inter", Arial, sans-serif;
  text-transform: none;
}

.gpol-site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gpol-header-btn,
.gpol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--gpol-yellow);
  color: var(--gpol-black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.gpol-header-btn:hover,
.gpol-btn:hover {
  color: var(--gpol-black);
  transform: translateY(-1px);
  background: #12cfc6;
}

.gpol-header-btn--ghost {
  background: var(--gpol-ink);
  color: var(--gpol-white);
  border-color: rgba(255, 255, 255, .16);
}

.gpol-header-btn--ghost:hover {
  color: var(--gpol-white);
  background: var(--gpol-teal);
}

.gpol-btn--primary {
  min-height: 58px;
  padding: 0 26px;
  box-shadow: 0 16px 34px rgba(0, 178, 169, .28);
}

.gpol-btn--whatsapp {
  min-height: 58px;
  background: #25d366;
  color: var(--gpol-white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .22);
}

.gpol-btn--whatsapp:hover {
  color: var(--gpol-white);
  background: #1ebe5d;
}

.gpol-hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gpol-black);
  color: var(--gpol-white);
}

.gpol-hero__video,
.gpol-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gpol-hero__video {
  object-fit: cover;
  object-position: center;
}

.gpol-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .92) 0%, rgba(5, 7, 10, .72) 48%, rgba(5, 7, 10, .36) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, .65) 0%, rgba(5, 7, 10, .08) 42%);
}

.gpol-hero .container,
.gpol-hero__content {
  position: relative;
  z-index: 2;
}

.gpol-hero__content {
  max-width: 930px;
  padding: 50px 0;
}

.gpol-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gpol-yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gpol-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.gpol-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--gpol-white);
  font-size: clamp(2.8rem, 5.7vw, 5.3rem);
  line-height: .96;
  font-weight: 700;
  text-transform: uppercase;
}

.gpol-hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.gpol-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gpol-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gpol-hero__trust span {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .9);
  padding: 10px 12px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

.gpol-hero__trust strong {
  color: var(--gpol-yellow);
}

.gpol-proof {
  background: var(--gpol-black);
  color: var(--gpol-white);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.gpol-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gpol-proof article {
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.gpol-proof article:last-child {
  border-right: 0;
}

.gpol-proof__number {
  color: var(--gpol-yellow);
  font-weight: 900;
  letter-spacing: .08em;
}

.gpol-proof h2 {
  margin: 10px 0;
  color: var(--gpol-white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.gpol-proof p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
}

.gpol-section {
  padding: 96px 0;
}

.gpol-section--light {
  background: var(--gpol-soft);
}

.gpol-section--dark {
  background: var(--gpol-ink);
  color: var(--gpol-white);
}

.gpol-section__header {
  max-width: 780px;
  margin-bottom: 40px;
}

.gpol-section__header--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.gpol-section h2,
.gpol-method h2,
.gpol-local h2,
.gpol-lead h2 {
  margin: 0 0 16px;
  color: var(--gpol-ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
}

.gpol-section--dark h2,
.gpol-lead h2 {
  color: var(--gpol-white);
}

.gpol-section p,
.gpol-method p,
.gpol-local p,
.gpol-lead p {
  color: var(--gpol-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gpol-section--dark p,
.gpol-lead p {
  color: rgba(255, 255, 255, .78);
}

.gpol-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gpol-course-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.gpol-course-card--dark {
  background: var(--gpol-ink);
  color: var(--gpol-white);
  border-color: var(--gpol-ink);
}

.gpol-course-card__logo,
.gpol-course-card__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--gpol-soft);
}

.gpol-course-card__logo img {
  width: 52px;
  max-height: 52px;
  object-fit: contain;
}

.gpol-course-card__icon {
  background: rgba(0, 178, 169, .14);
  color: var(--gpol-yellow);
  font-size: 30px;
}

.gpol-course-card h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.gpol-course-card p {
  margin: 0 0 18px;
  color: var(--gpol-muted);
}

.gpol-course-card--dark p {
  color: rgba(255, 255, 255, .74);
}

.gpol-course-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.gpol-course-card li {
  position: relative;
  padding-left: 22px;
  color: var(--gpol-ink);
}

.gpol-course-card--dark li {
  color: rgba(255, 255, 255, .88);
}

.gpol-course-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gpol-yellow);
}

.gpol-course-card a,
.gpol-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gpol-teal);
  font-weight: 900;
}

.gpol-course-card--dark a {
  color: var(--gpol-yellow);
}

.gpol-reviews-header__copy {
  max-width: 760px;
}

.gpol-review-carousel__rating span {
  display: inline-flex;
  gap: 3px;
  color: var(--gpol-yellow);
}

.gpol-method {
  background: var(--gpol-white);
}

.gpol-media-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 18px;
  align-items: stretch;
  padding-right: 34px;
}

.gpol-media-stack img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.gpol-media-stack img:first-child {
  margin-top: 44px;
  object-position: 25% center;
}

.gpol-media-stack img:nth-child(2) {
  object-position: 24% center;
}

.gpol-method__list {
  display: grid;
  gap: 14px;
  margin: 26px 0 22px;
}

.gpol-method__list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gpol-line);
  color: var(--gpol-ink);
  font-weight: 700;
}

.gpol-method__list i {
  color: var(--gpol-yellow);
  margin-top: 4px;
}

.gpol-method__copy {
  display: grid;
  gap: 6px;
  font-weight: 400;
}

.gpol-method__copy strong {
  color: var(--gpol-ink);
  font-weight: 900;
  text-transform: uppercase;
}

.gpol-method__copy span {
  color: var(--gpol-muted);
  line-height: 1.55;
}

.gpol-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.gpol-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.gpol-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: var(--gpol-white);
  font-weight: 800;
}

.gpol-metrics i {
  color: var(--gpol-yellow);
}

.gpol-training-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}

.gpol-training-gallery img {
  height: 533px;
  object-fit: cover;
  border-radius: 8px;
  object-position: 29% center;
}

.gpol-training-gallery img:nth-child(2) {
  height: 420px;
  margin-top: 52px;
}

.gpol-physical-hero {
  background-position: center 42%;
}

.gpol-physical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gpol-physical-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.gpol-physical-card > span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(0, 178, 169, .16);
  color: var(--gpol-yellow);
  font-size: 24px;
}

.gpol-physical-card h3 {
  margin: 0 0 10px;
  color: var(--gpol-ink);
  font-size: 1.55rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.gpol-physical-card p {
  margin: 0;
}

.gpol-review-carousel__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -18px 0 18px;
  padding: 7px 10px;
  border: 1px solid var(--gpol-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--gpol-muted);
  font-size: .88rem;
  line-height: 1;
}

.gpol-review-carousel__rating strong {
  color: var(--gpol-ink);
  font-size: .88rem;
  font-weight: 800;
}

.gpol-review-carousel {
  overflow: hidden;
  padding: 4px 0 42px;
}

.gpol-review-carousel .swiper-slide {
  height: auto;
}

.gpol-review-card {
  height: 100%;
  margin: 0;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
  overflow: hidden;
}

.gpol-review-card__stars {
  display: flex;
  gap: 4px;
  padding: 14px 16px 0;
  color: var(--gpol-yellow);
}

.gpol-review-card__image-link {
  display: block;
  cursor: zoom-in;
}

.gpol-review-card img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: contain;
  object-position: top left;
  padding: 8px 12px 16px;
  background: var(--gpol-white);
}

.gpol-review-carousel__pagination {
  bottom: 0 !important;
}

.gpol-review-carousel__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--gpol-muted);
  opacity: .35;
}

.gpol-review-carousel__pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gpol-teal);
  opacity: 1;
}

.gpol-video-testimonials {
  background: var(--gpol-ink);
  color: var(--gpol-white);
  overflow: hidden;
}

.gpol-video-testimonials h2 {
  color: var(--gpol-white);
}

.gpol-video-testimonials .gpol-link {
  color: var(--gpol-yellow);
}

.gpol-video-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 66px;
}

.gpol-video-carousel .swiper-wrapper {
  align-items: stretch;
}

.gpol-video-carousel .swiper-slide {
  height: auto;
}

.gpol-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 58px rgba(5, 7, 10, .32);
}

.gpol-video-carousel .gpol-video-card {
  height: 100%;
}

.gpol-video-card__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--gpol-black);
}

.gpol-video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gpol-video-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.gpol-video-card__caption span,
.gpol-video-card__caption strong {
  color: var(--gpol-white);
  font-size: .82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.gpol-video-card__caption span {
  color: var(--gpol-yellow);
  font-weight: 900;
}

.gpol-video-card__caption strong {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 700;
}

.gpol-video-carousel__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gpol-video-carousel__prev,
.gpol-video-carousel__next {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  color: var(--gpol-white);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.gpol-video-carousel__prev:hover,
.gpol-video-carousel__next:hover {
  border-color: var(--gpol-yellow);
  background: var(--gpol-yellow);
  color: var(--gpol-black);
}

.gpol-video-carousel__prev.swiper-button-disabled,
.gpol-video-carousel__next.swiper-button-disabled {
  opacity: .38;
  cursor: not-allowed;
}

.gpol-video-carousel__pagination {
  width: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gpol-video-carousel__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
}

.gpol-video-carousel__pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: var(--gpol-yellow);
}

.gpol-local {
  background: var(--gpol-white);
}

.gpol-local-landing-hero {
  background-position: center 42%;
}

.gpol-local-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.gpol-local-landing {
  background: var(--gpol-soft);
}

.gpol-local-landing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gpol-local-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.gpol-local-card__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(0, 178, 169, .1);
  color: var(--gpol-teal);
  font-size: 26px;
}

.gpol-local-card h3 {
  margin: 0 0 12px;
  color: var(--gpol-ink);
  font-size: 1.8rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.gpol-local-card p {
  margin-bottom: 22px;
}

.gpol-local-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gpol-teal);
  font-weight: 900;
}

.gpol-local-landing-detail {
  background: var(--gpol-white);
}

.gpol-local-landing-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.gpol-local-landing-detail__media {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items: end;
}

.gpol-local-landing-detail__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.gpol-local-landing-detail__media img:nth-child(2) {
  height: 390px;
}

.gpol-local-landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.gpol-checklist {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.gpol-checklist li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
  color: var(--gpol-ink);
}

.gpol-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 900;
  color: var(--gpol-teal);
}

.gpol-map {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gpol-line);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.gpol-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

.gpol-faq {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

#faq .gpol-section__header,
#faq .gpol-faq {
  margin-left: auto;
  margin-right: auto;
}

#faq .gpol-section__header {
  text-align: center;
}

.gpol-faq details {
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 12px 30px rgba(16, 31, 51, .06);
}

.gpol-faq summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--gpol-ink);
  font-size: 1.1rem;
  font-weight: 900;
  list-style: none;
}

.gpol-faq summary::-webkit-details-marker {
  display: none;
}

.gpol-faq summary::after {
  content: "+";
  float: right;
  color: var(--gpol-teal);
  font-size: 1.5rem;
  line-height: 1;
}

.gpol-faq details[open] summary::after {
  content: "-";
}

.gpol-faq details p {
  margin: 0;
  padding: 0 24px 22px;
}

.gpol-lead {
  background: var(--gpol-black);
  color: var(--gpol-white);
}

.gpol-lead__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 540px);
  gap: 48px;
  align-items: start;
}

.gpol-lead-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.gpol-lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gpol-lead-form label {
  display: grid;
  gap: 8px;
  color: var(--gpol-white);
  font-weight: 800;
}

.gpol-lead-form input,
.gpol-lead-form select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: var(--gpol-white);
  color: var(--gpol-ink);
  padding: 0 14px;
}

.gpol-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: .9rem;
  font-weight: 600 !important;
}

.gpol-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.gpol-consent a {
  color: var(--gpol-yellow);
}

.gpol-footer {
  padding: 58px 0 22px;
  background: var(--gpol-ink);
  color: var(--gpol-white);
}

.gpol-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, .65fr) minmax(170px, .65fr) minmax(220px, .85fr);
  gap: 30px;
}

.gpol-footer__brand img {
  max-width: 190px;
  margin-bottom: 18px;
}

.gpol-footer__brand-logo--gcivil {
  max-width: 240px;
}

.gpol-footer p,
.gpol-footer li,
.gpol-footer a {
  color: rgba(255, 255, 255, .78);
}

.gpol-footer h2 {
  margin: 0 0 18px;
  color: var(--gpol-white);
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.gpol-footer ul {
  display: grid;
  gap: 9px;
}

.gpol-footer a:hover {
  color: var(--gpol-yellow);
}

.gpol-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.gpol-footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  color: var(--gpol-white);
}

.gpol-footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gpol-footer__contact i {
  color: var(--gpol-yellow);
  margin-top: 5px;
}

.gpol-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #25d366;
  color: var(--gpol-white) !important;
  font-weight: 900;
}

.gpol-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.gpol-footer__bottom p {
  margin: 0;
}

.gpol-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gpol-mobile-cta {
  display: none;
}

/* Legacy template surfaces restyled to match the GPOL redesign across inner pages. */
.page__banner,
.blog-hero,
.blog-detail__hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--gpol-black);
  background-size: cover;
  background-position: center;
  color: var(--gpol-white);
}

.page__banner::before,
.blog-hero::before,
.blog-detail__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .9) 0%, rgba(5, 7, 10, .72) 52%, rgba(5, 7, 10, .38) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, .62) 0%, rgba(5, 7, 10, .08) 48%);
}

.page__banner::after,
.blog-hero::after,
.blog-detail__hero::after {
  display: none !important;
}

.page__banner .container,
.blog-hero .container,
.blog-detail__hero .container {
  position: relative;
  z-index: 2;
}

.gpol-video-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gpol-video-hero::before {
  z-index: 1;
}

.page__banner-content,
.blog-hero__content,
.blog-detail__hero-content {
  max-width: 890px;
  padding: 96px 0;
}

.page__banner-content h1,
.blog-hero h1,
.blog-detail__hero h1 {
  margin: 0 0 16px;
  color: var(--gpol-white) !important;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: .98;
  font-weight: 700;
  text-transform: uppercase;
}

.page__banner-content ul,
.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
}

.page__banner-content ul li,
.blog-detail__meta span,
.blog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gpol-yellow) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page__banner-content ul li::before,
.blog-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.gpol-service-hero .page__banner-content ul {
  margin-bottom: 14px;
}

.gpol-service-hero .page__banner-content p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

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

.thin-bg,
.service__area,
.solution__area,
.about__area,
.team__area,
.contact__list,
.contact__form,
.blog-grid,
.blog-detail__body,
.error__area {
  background: var(--gpol-soft) !important;
}

.section-top,
.team__area-title span,
.contact__form-form-title span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gpol-yellow) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-top::before,
.team__area-title span::before,
.contact__form-form-title span::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.service__area h2,
.solution__area h2,
.about__area h2,
.team__area h2,
.contact__form h2,
.blog-grid h2,
.blog-detail__body h2,
.error__area h1,
.section-padding .container > h1,
.section-padding .container > h2 {
  margin: 0 0 18px;
  color: var(--gpol-ink);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
  font-weight: 700;
  text-transform: uppercase;
}

.service__area h3,
.solution__area h3,
.about__area h3,
.blog-detail__body h3,
.section-padding .container > h3 {
  margin: 30px 0 12px;
  color: var(--gpol-ink);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.service__area p,
.solution__area p,
.about__area p,
.contact__form p,
.blog-grid p,
.blog-detail__body p,
.section-padding .container p,
.service__area li,
.solution__area li,
.about__area li,
.blog-detail__body li,
.section-padding .container li {
  color: var(--gpol-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.service__area ul,
.solution__area ul,
.about__area ul,
.blog-detail__list,
.section-padding .container ul,
.section-padding .container ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
}

.service__area li,
.solution__area li,
.about__area li,
.blog-detail__list li,
.section-padding .container ul li {
  position: relative;
  list-style: none;
  padding-left: 26px !important;
}

.service__area li::before,
.solution__area li::before,
.about__area li::before,
.blog-detail__list li::before,
.section-padding .container ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  background: var(--gpol-yellow);
}

.theme-btn,
.theme-banner-btn,
.theme-btn--outline,
.blog-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--gpol-yellow);
  color: var(--gpol-black) !important;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 178, 169, .22);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.theme-btn::before,
.theme-btn::after,
.theme-banner-btn::before,
.theme-banner-btn::after {
  display: none !important;
}

.theme-btn:hover,
.theme-banner-btn:hover,
.theme-btn--outline:hover,
.blog-card__link:hover {
  transform: translateY(-1px);
  background: #12cfc6;
  color: var(--gpol-black) !important;
}

.gpol-service-cta {
  margin-top: 18px;
}

.service__area .gpol-check-list li::before,
.section-padding .container ul.gpol-check-list li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--gpol-teal);
  font-weight: 900;
}

.service__area-item h3 {
  margin-top: 0;
}

.gpol-service-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding: 34px;
  border: 1px solid rgba(0, 178, 169, .32);
  border-radius: 8px;
  background: var(--gpol-ink);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .14);
}

.gpol-service-final-cta h2 {
  margin-bottom: 10px;
  color: var(--gpol-white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.gpol-service-final-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.gpol-service-final-cta .theme-btn {
  flex: 0 0 auto;
  margin-top: 0;
}

.gpol-training-cta {
  margin-top: 18px;
}

.service__area-item,
.contact__list-item,
.contact__form-form,
.blog-card,
.blog-detail__content,
.team__area-right-slide-item,
.error__area .container .row > div {
  overflow: hidden;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.service__area-item {
  padding: 28px;
}

.gpol-advantages-card {
  margin-top: 4px;
}

.service__area-item > span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(0, 178, 169, .1);
  color: var(--gpol-teal);
  font-weight: 900;
  text-transform: uppercase;
}

.service__area-item h4 {
  color: var(--gpol-ink);
  font-size: 1.7rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.about__area img,
.solution__area img,
.team__area img {
  border-radius: 8px;
}

.team__area {
  padding: 88px 0;
}

.team__area-title h2 {
  color: var(--gpol-ink);
}

.team__area-right-slide-item-content {
  padding: 18px;
  background: var(--gpol-white);
}

.team__area-right-slide-item-content h4 {
  margin-bottom: 4px;
  color: var(--gpol-ink);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.team__area-right-slide-item-content span {
  color: var(--gpol-muted);
  font-weight: 700;
}

.contact__list {
  margin-bottom: 0 !important;
}

.contact__list-item {
  height: 100%;
  padding: 28px;
  text-align: left;
}

.contact__list-item-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(0, 178, 169, .1);
}

.contact__list-item-icon img {
  max-width: 30px;
  filter: saturate(1.1);
}

.contact__list-item h4 {
  color: var(--gpol-ink);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.contact__list-item a,
.contact__list-item p {
  color: var(--gpol-muted);
}

.contact__form {
  padding-bottom: 88px;
}

.contact__form-form {
  padding: 34px;
  text-align: left;
}

.contact__form-form-title {
  margin-bottom: 26px;
  text-align: left;
}

.contact__form-form-title h2 {
  margin-top: 8px;
}

.contact__form-form-group {
  margin-bottom: 16px;
}

.contact__form-form-group input,
.contact__form-form-group textarea,
.contact__form-form-group select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--gpol-line) !important;
  border-radius: 6px;
  background: var(--gpol-white) !important;
  color: var(--gpol-ink);
  padding: 0 16px;
}

.contact__form-form-group textarea {
  min-height: 150px;
  padding-top: 14px;
}

.contact__form-form-group.icon input,
.contact__form-form-group.icon textarea,
.contact__form-form-group.icon select {
  padding-left: 46px;
}

.contact__form-form-group.icon i {
  left: 17px;
  color: var(--gpol-teal);
}

.contact__form-form-group .aceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gpol-muted);
  font-size: .92rem;
  line-height: 1.55;
}

.contact__form-form-group .aceptance input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 3px;
}

.contact__map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

.gpol-contact {
  background: var(--gpol-soft);
}

.gpol-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.gpol-contact__info {
  padding-top: 12px;
}

.gpol-contact__info h2,
.gpol-contact__form-heading h2,
.gpol-contact-map__copy h2 {
  margin: 0 0 16px;
  color: var(--gpol-ink);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.gpol-contact__info p,
.gpol-contact__form-heading p,
.gpol-contact-map__copy p {
  color: var(--gpol-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gpol-contact__cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.gpol-contact-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 14px 34px rgba(16, 31, 51, .07);
}

.gpol-contact-card:hover {
  border-color: rgba(0, 178, 169, .42);
  color: var(--gpol-ink);
}

.gpol-contact-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 178, 169, .1);
  color: var(--gpol-teal);
  font-size: 19px;
}

.gpol-contact-card strong,
.gpol-contact-card small {
  display: block;
}

.gpol-contact-card strong {
  color: var(--gpol-ink);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gpol-contact-card small {
  margin-top: 4px;
  color: var(--gpol-muted);
  font-size: .98rem;
  line-height: 1.4;
  word-break: break-word;
}

.gpol-contact__steps {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--gpol-line);
}

.gpol-contact__steps h3 {
  margin: 0 0 14px;
  color: var(--gpol-ink);
  font-size: 1.75rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.gpol-contact__steps ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
}

.gpol-contact__steps li {
  position: relative;
  padding-left: 26px;
  color: var(--gpol-muted);
  font-weight: 700;
  line-height: 1.55;
}

.gpol-contact__steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  background: var(--gpol-yellow);
}

.gpol-contact__form-card {
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 22px 55px rgba(16, 31, 51, .11);
}

.gpol-contact__form-heading {
  margin-bottom: 24px;
}

.gpol-contact__form-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.gpol-contact-form {
  display: grid;
  gap: 16px;
}

.gpol-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gpol-contact-form__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gpol-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gpol-ink);
  font-weight: 900;
}

.gpol-contact-form label > span {
  font-size: .9rem;
}

.gpol-contact-form input,
.gpol-contact-form textarea,
.gpol-contact-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--gpol-line);
  border-radius: 6px;
  background: var(--gpol-white);
  color: var(--gpol-ink);
  padding: 0 14px;
  font-weight: 600;
}

.gpol-contact-form textarea {
  min-height: 136px;
  padding-top: 14px;
  resize: vertical;
}

.gpol-contact-form input:focus,
.gpol-contact-form textarea:focus,
.gpol-contact-form select:focus {
  border-color: var(--gpol-teal);
  outline: 3px solid rgba(0, 178, 169, .14);
}

.gpol-contact-form__consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--gpol-muted) !important;
  font-weight: 600 !important;
}

.gpol-contact-form__consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  padding: 0;
}

.gpol-contact-form__consent a {
  color: var(--gpol-teal);
}

.gpol-contact-form .gpol-btn {
  width: fit-content;
  min-width: 210px;
}

.gpol-contact-map {
  padding: 0 0 88px;
  scroll-margin-top: 160px;
  background: var(--gpol-soft);
}

.gpol-contact-map__shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--gpol-line);
  border-radius: 8px;
  background: var(--gpol-white);
  box-shadow: 0 18px 45px rgba(16, 31, 51, .08);
}

.gpol-contact-map__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
  background: var(--gpol-ink);
}

.gpol-contact-map__copy h2 {
  color: var(--gpol-white);
}

.gpol-contact-map__copy p {
  color: rgba(255, 255, 255, .78);
}

.gpol-contact-map__frame iframe {
  display: block;
  width: 100%;
  min-height: 430px;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .88), rgba(5, 7, 10, .44)),
    url("../img/recursos/rafa-clase.jpeg") center/cover;
}

.blog-hero p,
.blog-detail__hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.15rem;
  line-height: 1.65;
}

.blog-grid .row {
  row-gap: 24px;
}

.blog-card {
  height: 100%;
}

.blog-card__media {
  position: relative;
  min-height: 245px;
  display: block;
  padding-top: 0 !important;
  background-size: cover;
  background-position: center;
}

.blog-card__date,
.blog-card__category {
  position: absolute;
  z-index: 2;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card__date {
  left: 16px;
  top: 16px;
  display: grid;
  min-width: 64px;
  padding: 8px;
  border: 1px solid rgba(220, 226, 234, .9);
  background: var(--gpol-white);
  color: var(--gpol-black);
  text-align: center;
  box-shadow: 0 12px 26px rgba(5, 7, 10, .18);
}

.blog-card__day {
  color: var(--gpol-black);
  font-size: 1.55rem;
  line-height: 1;
}

.blog-card__month,
.blog-card__year {
  color: var(--gpol-black);
  font-size: .75rem;
}

.blog-card__category {
  left: 16px;
  right: auto;
  bottom: 16px;
  width: auto;
  min-width: 0;
  padding: 6px 9px;
  background: rgba(0, 178, 169, .94);
  color: var(--gpol-white);
  font-size: .68rem;
  line-height: 1;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__body h2,
.blog-card__body h3 {
  margin: 0 0 12px;
  color: var(--gpol-ink);
  font-size: 1.65rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.blog-card__body h2 a,
.blog-card__body h3 a {
  color: inherit;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 14px;
  color: var(--gpol-muted);
  font-size: .9rem;
  font-weight: 700;
}

.blog-card__link {
  min-height: auto;
  margin-top: 8px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gpol-teal) !important;
}

.blog-card__link:hover {
  background: transparent;
  color: var(--gpol-ink) !important;
}

.gpol-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.gpol-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.gpol-pagination a,
.gpol-pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gpol-line);
  border-radius: 6px;
  background: var(--gpol-white);
  color: var(--gpol-ink);
  font-weight: 900;
}

.gpol-pagination a:hover,
.gpol-pagination .is-active {
  border-color: var(--gpol-teal);
  background: var(--gpol-teal);
  color: var(--gpol-white);
}

.gpol-pagination__control {
  min-width: 112px !important;
  padding: 0 16px;
  text-transform: uppercase;
}

.gpol-pagination .is-disabled {
  opacity: .42;
  pointer-events: none;
}

.blog-cta {
  padding: 54px 0;
  background: var(--gpol-ink);
  color: var(--gpol-white);
}

.blog-cta h2,
.blog-cta h3 {
  color: var(--gpol-white);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.blog-cta p {
  color: rgba(255, 255, 255, .76);
}

.blog-detail__body {
  background: var(--gpol-soft);
}

.blog-detail__content {
  padding: clamp(24px, 5vw, 54px);
}

.blog-detail__content img {
  border-radius: 8px;
}

.blog-detail__rule {
  border-color: var(--gpol-line);
}

.blog-detail__soft-break {
  height: 12px;
}

.error__area .container .row > div {
  padding: 44px;
}

.whatsapp-float {
  border-radius: 8px;
}

.grecaptcha-badge {
  left: auto !important;
  right: -97px !important;
  bottom: 168px !important;
  transform: scale(.52);
  transform-origin: right bottom;
  opacity: .58;
  z-index: 900 !important;
  transition: opacity .18s ease;
}

.grecaptcha-badge:hover {
  opacity: .92;
}

@media (max-width: 1199px) {
  .gpol-site-header {
    padding: 0 20px;
  }

  .gpol-site-header__actions {
    display: none;
  }

  .gpol-course-grid,
  .gpol-local-landing__grid,
  .gpol-physical-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gpol-course-card--dark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .gpol-topbar__inner {
    justify-content: center;
  }

  .gpol-topbar__inner span,
  .gpol-topbar__inner a[href^="mailto"] {
    display: none;
  }

  .gpol-site-header {
    min-height: 70px;
  }

  .gpol-site-header__logo {
    max-width: 100%;
    flex: 1;
  }

  .gpol-site-header .responsive-menu {
    display: block;
  }

  .mean-container .mean-bar {
    background: transparent;
    position: static;
    min-height: 0;
    padding: 0;
  }

  .mean-container a.meanmenu-reveal {
    box-sizing: border-box;
    top: 7px;
    right: 0 !important;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border: 1px solid var(--gpol-line);
    border-radius: 6px;
    color: var(--gpol-ink);
  }

  .mean-container a.meanmenu-reveal span {
    background: var(--gpol-ink);
    height: 2px;
    margin-top: 5px;
  }

  .mean-container .mean-nav {
    position: absolute;
    top: 64px;
    left: -20px;
    right: -20px;
    width: auto;
    margin-top: 0;
    background: var(--gpol-ink);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 34px rgba(5, 7, 10, .2);
  }

  .mean-container .mean-nav ul li a {
    color: rgba(255, 255, 255, .9) !important;
    border-top-color: rgba(255, 255, 255, .16);
    background: var(--gpol-ink);
  }

  .mean-container .mean-nav ul li a:hover {
    color: var(--gpol-yellow) !important;
    background: var(--gpol-navy);
  }

  .mean-container .mean-nav ul li a.mean-expand {
    background: var(--gpol-teal);
    color: var(--gpol-white) !important;
    border-left-color: rgba(255, 255, 255, .16);
  }

  .mean-container .mean-nav ul li.is-active > a {
    color: var(--gpol-teal) !important;
  }

  .mean-container .mean-nav ul li.is-active > a.mean-expand {
    color: var(--gpol-white) !important;
  }

  .gpol-hero {
    min-height: calc(100svh - 108px);
  }

  .gpol-hero__content {
    padding: 60px 0 84px;
  }

  .gpol-proof__grid,
  .gpol-course-grid,
  .gpol-local-landing__grid,
  .gpol-local-landing-detail__grid,
  .gpol-physical-grid,
  .gpol-split,
  .gpol-lead__grid,
  .gpol-contact__grid,
  .gpol-contact-map__shell,
  .gpol-footer__grid {
    grid-template-columns: 1fr;
  }

  .gpol-proof article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .gpol-proof article:last-child {
    border-bottom: 0;
  }

  .gpol-course-card--dark {
    grid-column: auto;
  }

  .gpol-media-stack {
    padding-right: 0;
  }

  .gpol-media-stack img {
    height: 430px;
  }

  .gpol-section__header--split {
    display: block;
  }

  .gpol-service-final-cta {
    display: grid;
    align-items: start;
  }

  .gpol-local-landing-cta {
    justify-content: flex-start;
  }

  .gpol-contact__info {
    padding-top: 0;
  }

  .gpol-contact-form__row,
  .gpol-contact-form__row--three {
    grid-template-columns: 1fr;
  }

  .gpol-advantages-card {
    margin-top: 32px;
  }

  .gpol-training-cta {
    margin-bottom: 32px;
  }

  .gpol-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .gpol-topbar {
    display: none;
  }

  .gpol-header-shell {
    top: 0;
  }

  .gpol-guardia-hero {
    background-position: 52% center !important;
  }

  .gpol-physical-hero {
    background-position: 50% center !important;
  }

  .gpol-section {
    padding: 68px 0;
  }

  .gpol-hero h1 {
    font-size: clamp(2.4rem, 11.2vw, 3.8rem);
  }

  .gpol-hero__actions .gpol-btn {
    width: 100%;
  }

  .gpol-local-landing-hero__actions .theme-btn,
  .gpol-local-landing-hero__actions .gpol-btn {
    width: 100%;
  }

  .gpol-local-landing-detail__media {
    grid-template-columns: 1fr;
  }

  .gpol-local-landing-detail__media img,
  .gpol-local-landing-detail__media img:nth-child(2) {
    height: 330px;
  }

  .gpol-hero__trust {
    display: grid;
  }

  .gpol-course-card {
    min-height: 0;
    padding: 22px;
  }

  .gpol-media-stack,
  .gpol-training-gallery,
  .gpol-lead-form__row {
    grid-template-columns: 1fr;
  }

  .gpol-media-stack img,
  .gpol-media-stack img:first-child,
  .gpol-training-gallery img,
  .gpol-training-gallery img:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }

  .gpol-review-card img {
    height: 245px;
  }

  .gpol-lead-form {
    padding: 20px;
  }

  .gpol-contact-card {
    min-height: 78px;
  }

  .gpol-contact__form-card {
    padding: 22px;
  }

  .gpol-contact-form .gpol-btn {
    width: 100%;
  }

  .gpol-contact-map {
    padding-bottom: 68px;
    scroll-margin-top: 92px;
  }

  .gpol-contact-map__frame iframe {
    min-height: 330px;
  }

  .gpol-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .gpol-mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gpol-mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    background: var(--gpol-yellow);
    color: var(--gpol-black);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(5, 7, 10, .22);
  }

  .gpol-mobile-cta a:last-child {
    background: #25d366;
    color: var(--gpol-white);
  }

  .scroll-top {
    display: none !important;
  }

  .whatsapp-float {
    display: inline-flex !important;
    right: 14px;
    bottom: 18px;
  }

  body.gpol-redesign .whatsapp-float {
    display: none !important;
  }

  .grecaptcha-badge {
    right: -97px !important;
    bottom: 106px !important;
    transform: scale(.46);
  }

  body.gpol-redesign .grecaptcha-badge {
    bottom: 148px !important;
  }

  body.gpol-redesign {
    padding-bottom: 72px;
  }
}

@media (max-width: 420px) {
  .gpol-site-header {
    padding: 0 14px;
  }

  .gpol-site-header__logo a img {
    max-width: 118px;
  }

  .gpol-kicker {
    font-size: 12px;
  }

  .gpol-section h2,
  .gpol-method h2,
  .gpol-local h2,
  .gpol-lead h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gpol-hero__video {
    display: none;
  }
}
