:root {
  --bg: #ffffff;
  --text: #252622;
  --muted: #6a6d6b;
  --accent: #639c98;
  --surface: #f5f6f6;
  --dark: #1e1f1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

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

.container {
  width: min(1320px, 94%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #f2f2f2;
  padding-top: 0;
  padding-bottom: 2rem;
}

.site-header-top-strip {
  height: 14px;
  background: #2b3149;
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: clamp(220px, 24vw, 320px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1.8rem, 4vw, 3.6rem);
  min-height: 118px;
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding-top: 0.55rem;
  flex: 0 0 auto;
}

.brand img {
  width: 196px;
  height: auto;
}

.main-nav {
  grid-column: 2;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  justify-self: stretch;
  justify-content: flex-end;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 300;
  font-size: 1.01rem;
  letter-spacing: 0.07em;
  line-height: 1;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.44rem;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #3f6d6a;
}

.main-nav a.active {
  color: var(--accent);
  border-bottom: 1px solid #7fb8b4;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 265px;
  padding: 0.35rem 0;
  background: #fff;
  border: 1px solid #e2e4e4;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}

.nav-dropdown a {
  display: block;
  padding: 0.52rem 0.9rem;
  border-bottom: 0;
  font-size: 0.87rem;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  grid-column: 2;
  justify-self: end;
  display: none;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  position: relative;
}

.menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-layout {
  position: relative;
  padding-top: 0;
}

.hero-stage {
  position: relative;
  height: min(66vh, 700px);
  min-height: 420px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide.is-active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
  color: #7e837f;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 500;
}

p {
  margin: 0 0 1rem;
}

.btn {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.hero-card {
  position: absolute;
  left: clamp(1.2rem, 5vw, 4.3rem);
  bottom: clamp(1.8rem, 6vw, 4rem);
  width: min(440px, 84%);
  background: #fff;
  padding: 2rem 2.2rem 2rem 2rem;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.hero-card-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #c9cecb;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  color: #2a2c2b;
  cursor: pointer;
  z-index: 3;
}

.slide-arrow-left {
  left: 1.2rem;
}

.slide-arrow-right {
  right: 1.2rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.dot.is-active {
  background: #fff;
}

.quote {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 2.1rem 0;
}

.quote h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.home-quote-band {
  position: relative;
  color: #fff;
  min-height: 460px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.home-quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 18, 0.58);
  z-index: 1;
}

.home-quote-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-quote-wrap {
  position: relative;
  z-index: 2;
}

.home-quote-wrap h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0.17em;
  font-weight: 400;
}

.home-quote-wrap p {
  margin: 0.6rem 0 0;
  color: #d6d8d8;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.page-video-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 18, 0.55);
  z-index: 1;
}

.page-video-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-video-hero-content {
  position: relative;
  z-index: 2;
}

.page-video-hero-content h1 {
  margin: 0;
  max-width: none;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.6rem, 6vw, 6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.formacao-page {
  background: #efefef;
}

.formacao-hero {
  min-height: 620px;
}

.formacao-hero .page-video-hero-content h1 {
  font-size: clamp(2rem, 4.6vw, 5.1rem);
  line-height: 1.18;
  letter-spacing: 0.09em;
}

.formacao-hero .page-video-hero-content p {
  margin: 0.6rem 0 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.formacao-intro {
  padding-top: 3.8rem;
  padding-bottom: 2.8rem;
}

.formacao-intro-wrap {
  max-width: 760px;
}

.formacao-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.03em;
}

.formacao-intro-line {
  width: 102px;
  height: 3px;
  margin: 0.7rem 0 2.1rem;
  background: #6aa3a1;
}

.formacao-intro-wrap p {
  margin: 0 0 1.15rem;
  color: #3f4241;
  font-size: 0.93rem;
  line-height: 1.7;
}

.formacao-level {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.formacao-level-wrap {
  max-width: 1180px;
}

.formacao-level-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
  gap: 1.45rem;
  align-items: stretch;
}

.formacao-level-grid.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.95fr);
}

.formacao-level-grid.reverse .formacao-level-media {
  order: 2;
}

.formacao-level-grid.reverse .formacao-level-content {
  order: 1;
}

.formacao-level-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.formacao-level-content {
  align-self: start;
}

.formacao-level-wrap h3 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.formacao-level-content h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 0.7rem 0 1.2rem;
  background: #6aa3a1;
}

.formacao-level-wrap h4 {
  margin: 0 0 0.35rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.formacao-level-wrap p {
  margin: 0 0 0.78rem;
  max-width: 92ch;
  font-size: 0.87rem;
  line-height: 1.65;
}

.formacao-level-wrap ul {
  margin: 0 0 0.82rem;
  padding-left: 1.2rem;
}

.formacao-level-wrap li {
  margin-bottom: 0.38rem;
  font-size: 0.87rem;
  line-height: 1.55;
}

.formacao-values {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-dark {
  background: #e6e6e6;
}

.formacao-f4-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.competicao-page {
  background: #efefef;
}

.competicao-hero {
  min-height: 420px;
}

.competicao-hero .page-video-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.09em;
}

.competicao-intro {
  padding-top: 4.2rem;
  padding-bottom: 2.1rem;
}

.competicao-intro-wrap {
  max-width: 620px;
}

.competicao-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  letter-spacing: 0.05em;
}

.competicao-intro-line {
  width: 98px;
  height: 3px;
  margin: 0.7rem 0 1.8rem;
  background: #6aa3a1;
}

.competicao-intro-wrap p {
  margin: 0 0 1.3rem;
  color: #3f4241;
  font-size: 0.88rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.competicao-detail {
  padding-top: 0.6rem;
  padding-bottom: 2rem;
}

.competicao-detail-wrap {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.competicao-detail-media img {
  width: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.competicao-credit {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
  color: #626767;
}

.competicao-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.competicao-detail-col h4 {
  margin: 0 0 0.45rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.competicao-detail-col ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.competicao-detail-col li {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #2d302f;
  letter-spacing: 0.02em;
}

.competicao-detail-col li::before {
  content: "• ";
}

.competicao-values {
  margin: 0.28rem 0 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #62a3a1;
  font-size: 0.93rem;
}

.competicao-max {
  margin: 0.9rem 0 0.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f2221;
}

.competicao-cta-section {
  padding-top: 1rem;
  padding-bottom: 2.8rem;
}

.competicao-cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.competicao-cta-text {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #171918;
}

.competicao-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232625;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.clinicas-page {
  background: #efefef;
}

.clinicas-hero {
  min-height: 420px;
}

.clinicas-hero .page-video-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  letter-spacing: 0.09em;
}

.clinicas-intro {
  padding-top: 3.9rem;
  padding-bottom: 1.2rem;
}

.clinicas-intro-wrap {
  max-width: 760px;
}

.clinicas-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
}

.clinicas-intro-line {
  width: 98px;
  height: 3px;
  margin: 0.72rem 0 1.75rem;
  background: #6aa3a1;
}

.clinicas-intro-wrap p {
  margin: 0 0 1rem;
  color: #3f4241;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.clinicas-values {
  margin-top: 1.1rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #62a3a1;
}

.clinicas-gallery {
  padding-top: 0.25rem;
  padding-bottom: 1.4rem;
}

.clinicas-gallery-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.clinicas-gallery-item {
  margin: 0;
}

.clinicas-gallery-item img {
  width: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.estagios-page {
  background: #efefef;
}

.estagios-hero {
  min-height: 420px;
}

.estagios-hero .page-video-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  letter-spacing: 0.09em;
}

.estagios-intro {
  padding-top: 3.9rem;
  padding-bottom: 1.5rem;
}

.estagios-intro-wrap {
  max-width: 760px;
}

.estagios-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
}

.estagios-intro-line {
  width: 98px;
  height: 3px;
  margin: 0.72rem 0 1.75rem;
  background: #6aa3a1;
}

.estagios-intro-wrap p {
  margin: 0 0 1.15rem;
  color: #3f4241;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.estagios-block {
  padding-top: 0.2rem;
  padding-bottom: 1.4rem;
}

.estagios-block-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1.7rem;
  align-items: center;
}

.estagios-block-grid.reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.estagios-block-grid.reverse .estagios-block-media {
  order: 2;
}

.estagios-block-grid.reverse .estagios-block-content {
  order: 1;
}

.estagios-block-media {
  margin: 0;
}

.estagios-block-media img {
  width: 100%;
  min-height: 380px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.estagios-block-content h3 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.estagios-block-content h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 0.6rem 0 1.1rem;
  background: #6aa3a1;
}

.estagios-block-content h4 {
  margin: 0 0 0.3rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.estagios-block-content p {
  margin: 0 0 0.55rem;
  color: #313433;
  font-size: 0.86rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.estagios-values {
  margin: 0.7rem 0 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  color: #62a3a1;
}

.estagios-cta-section {
  padding-top: 0.2rem;
  padding-bottom: 2.8rem;
}

.estagios-cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.estagios-cta-text {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #171918;
}

.estagios-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232625;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.team-building-page {
  background: #efefef;
}

.team-building-hero {
  min-height: 420px;
}

.team-building-hero::before {
  background: rgba(240, 243, 244, 0.25);
}

.team-building-hero .page-video-hero-content h1 {
  color: #181b1a;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.team-building-intro {
  padding-top: 3.8rem;
  padding-bottom: 1.3rem;
}

.team-building-intro-wrap {
  max-width: 760px;
}

.team-building-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
}

.team-building-intro-line {
  width: 98px;
  height: 3px;
  margin: 0.72rem 0 1.75rem;
  background: #6aa3a1;
}

.team-building-intro-wrap p {
  margin: 0 0 1rem;
  color: #3f4241;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.team-building-values {
  margin-top: 0.35rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #62a3a1;
}

.team-building-gallery {
  padding-top: 0.2rem;
  padding-bottom: 0.55rem;
}

.team-building-gallery-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-building-gallery-item {
  margin: 0;
}

.team-building-gallery-item img {
  width: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.team-building-cta-section {
  padding-top: 0.35rem;
  padding-bottom: 2.8rem;
}

.team-building-cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.team-building-cta-text {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #171918;
}

.team-building-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232625;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.festas-page {
  background: #efefef;
}

.festas-hero {
  min-height: 420px;
}

.festas-hero .page-video-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  letter-spacing: 0.09em;
}

.festas-intro {
  padding-top: 3.8rem;
  padding-bottom: 1.3rem;
}

.festas-intro-wrap {
  max-width: 760px;
}

.festas-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
}

.festas-intro-line {
  width: 98px;
  height: 3px;
  margin: 0.72rem 0 1.75rem;
  background: #6aa3a1;
}

.festas-intro-wrap p {
  margin: 0 0 1rem;
  color: #3f4241;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.festas-values {
  margin-top: 0.35rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #62a3a1;
}

.festas-gallery {
  padding-top: 0.2rem;
  padding-bottom: 0.55rem;
}

.festas-gallery-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.festas-gallery-item {
  margin: 0;
}

.festas-gallery-item img {
  width: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.festas-cta-section {
  padding-top: 0.35rem;
  padding-bottom: 2.8rem;
}

.festas-cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.festas-cta-text {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #171918;
}

.festas-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232625;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.aulas-page {
  background: #efefef;
}

.aulas-hero {
  min-height: 420px;
}

.aulas-hero .page-video-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  letter-spacing: 0.09em;
}

.aulas-columns {
  padding-top: 3.6rem;
  padding-bottom: 1.3rem;
}

.aulas-columns-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.6rem;
}

.aulas-col h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  letter-spacing: 0.04em;
}

.aulas-col-line {
  width: 102px;
  height: 3px;
  margin: 0.72rem 0 1.45rem;
  background: #6aa3a1;
}

.aulas-col p {
  margin: 0 0 0.7rem;
  color: #323534;
  font-size: 0.88rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.aulas-values {
  margin-top: 0.3rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  color: #62a3a1;
}

.aulas-gallery {
  padding-top: 0.2rem;
  padding-bottom: 0.55rem;
}

.aulas-gallery-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.aulas-gallery-item {
  margin: 0;
}

.aulas-gallery-item img {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.aulas-cta-section {
  padding-top: 0.35rem;
  padding-bottom: 2.8rem;
}

.aulas-cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.aulas-cta-text {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #171918;
}

.aulas-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232625;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.pack-page {
  background: #efefef;
}

.pack-hero {
  min-height: 420px;
}

.pack-hero .page-video-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  letter-spacing: 0.09em;
}

.pack-intro {
  padding-top: 3.8rem;
  padding-bottom: 1.3rem;
}

.pack-intro-wrap {
  max-width: 760px;
}

.pack-intro-wrap h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
}

.pack-intro-line {
  width: 98px;
  height: 3px;
  margin: 0.72rem 0 1.75rem;
  background: #6aa3a1;
}

.pack-intro-wrap p {
  margin: 0 0 1rem;
  color: #3f4241;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.pack-values {
  margin-top: 0.35rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #62a3a1;
}

.pack-gallery {
  padding-top: 0.2rem;
  padding-bottom: 0.55rem;
}

.pack-gallery-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pack-gallery-item {
  margin: 0;
}

.pack-gallery-item img {
  width: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.pack-cta-section {
  padding-top: 0.35rem;
  padding-bottom: 2.8rem;
}

.pack-cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.pack-cta-text {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #171918;
}

.pack-cta-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232625;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.home-intro {
  padding-top: 5.4rem;
  padding-bottom: 5.3rem;
}

.home-intro-wrap {
  max-width: 1240px;
}

.home-intro-copy {
  text-align: center;
}

.home-intro-copy h2 {
  margin-bottom: 0.7rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.home-intro-line {
  width: 200px;
  height: 4px;
  margin: 0 25% 2.6rem auto;
  background: #6a9f9d;
}

.home-intro-copy p {
  max-width: 47ch;
  margin: 0 auto;
  color: #303331;
  font-size: clamp(0.58rem, 0.95vw, 1.4rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.home-intro-btn {
  border-radius: 0;
  padding: 0.72rem 1.8rem;
  margin-top: 2rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 400;
  background: #6a9f9d;
  border-color: #6a9f9d;
}

.home-team-btn {
  border-radius: 0;
  padding: 0.78rem 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  background: #121314;
  border-color: #121314;
}

.home-services {
  background: #e7e7e7;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.services-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.service-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 2.9rem);
  pointer-events: none;
  z-index: 1;
}

.service-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.service-slide-card {
  width: min(530px, 75%);
  min-height: 280px;
  background: rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(213, 215, 215, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-slide-card h3 {
  margin: 0;
  color: #111;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.8rem, 4.5vw, 4.05rem);
  text-transform: uppercase;
  text-align: center;
  max-width: 90%;
  line-height: 1.06;
}

.service-slide-card a {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e2321;
  color: #fff;
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
}

.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 5.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  padding: 0;
}

.services-arrow-left {
  left: 1.4rem;
}

.services-arrow-right {
  right: 1.4rem;
}

.services-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 4;
}

.services-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0;
}

.services-dot.is-active {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  background: transparent;
}

.home-team {
  padding-top: 3.8rem;
  padding-bottom: 2.7rem;
}

.home-team-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.7rem);
  align-items: center;
}

.home-team-media {
  min-height: 330px;
}

.home-team-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.home-team-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  margin-bottom: 1rem;
}

.home-team-copy p {
  color: #5a5d5b;
  max-width: 58ch;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface);
}

.team-start {
  padding-top: 4.8rem;
  padding-bottom: 3.2rem;
}

.section > .container > p,
.section.container > p,
.team-start p {
  max-width: 760px;
  color: var(--muted);
}

.cards {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #e6e7e7;
  border-radius: 12px;
  padding: 1rem;
}

.card h3 {
  font-size: 1.06rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #2a6f6b;
  text-decoration: none;
  border-bottom: 1px solid #2a6f6b;
}

.forecast-cta-section {
  background: #efefef;
  padding: 2.2rem 0 4.2rem;
}

.forecast-cta {
  position: relative;
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1e2120;
  background-image: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    url("photos/3a814bc5-15ca-49ab-89cb-3e69b304f424.jpg");
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.forecast-cta-text {
  font-size: clamp(2rem, 3.3vw, 4rem);
  letter-spacing: 0.12em;
  text-transform: none;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.7);
}

.forecast-cta-arrow {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #242828;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.partners {
  background: #fff;
}

.partners-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.3rem;
  align-items: center;
}

.partners-grid img {
  width: 100%;
  max-width: 220px;
  filter: grayscale(1);
  opacity: 0.9;
}

.site-footer {
  color: #252622;
}

.forecast-page {
  background: #efefef;
}

.forecast-main {
  padding: 3.5rem 0 5rem;
}

.forecast-wrap {
  text-align: center;
}

.forecast-wrap h1 {
  margin: 0 auto;
  max-width: 680px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.forecast-title-line {
  width: 140px;
  height: 3px;
  margin: 0.7rem auto 2.2rem;
  background: #69a3a2;
}

.forecast-widget-shell {
  width: min(820px, 100%);
  margin: 0 auto;
  border: 3px solid #8e8e8e;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 0.4rem;
}

.forecast-iframe {
  width: 100%;
  height: 510px;
  border: 0;
  display: block;
}

.forecast-widget-shell .surf-fc-widget {
  max-width: 100%;
}

.forecast-widget-shell .surf-fc-i {
  width: 100%;
  min-height: 520px;
}

.forecast-fallback {
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: #5b5f5d;
  text-align: center;
}

.forecast-fallback a {
  color: #2a6f6b;
}

.academy-page {
  background: #f3f3f3;
}

.academy-intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.academy-intro-wrap {
  max-width: 860px;
}

.academy-intro-wrap h1,
.academy-copy h2,
.testimonials-inner h2 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.04em;
}

.academy-intro-wrap h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.academy-title-line {
  width: 130px;
  height: 3px;
  background: #69a3a2;
  margin: 0.75rem 0 2rem;
}

.academy-intro-wrap p {
  color: #3f4241;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  line-height: 1.65;
}

.academy-values-section {
  padding: 1rem 0 6rem;
}

.academy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
}

.academy-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.academy-copy {
  background: #f3f3f3;
  padding: 3.4rem 3.2rem;
}

.academy-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.academy-copy p,
.academy-copy li {
  color: #3f4241;
  font-size: 1rem;
  line-height: 1.6;
}

.academy-copy ul {
  padding-left: 1.15rem;
  margin: 0;
}

.academy-copy li + li {
  margin-top: 0.4rem;
}

.academy-copy strong {
  color: #2f7f7b;
}

.academy-testimonials {
  background: url("photos/FullSizeRender_VSCO_7.JPG")
    center / cover no-repeat;
}

.academy-testimonials-overlay {
  position: relative;
  background: rgba(102, 162, 160, 0.72);
  height: 470px;
  display: flex;
  align-items: center;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #f5f7f6;
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
}

.testimonial-arrow.left {
  left: 2.3rem;
}

.testimonial-arrow.right {
  right: 2.3rem;
}

.testimonials-inner {
  max-width: 700px;
  color: #f7f8f8;
  text-align: center;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.testimonials-inner h2 {
  font-size: clamp(2.1rem, 2.7vw, 3rem);
  margin: 0 0 1.3rem;
  letter-spacing: 0.18em;
}

.testimonials-inner p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.testimonial-quote {
  max-height: 155px;
  overflow-y: auto;
  margin: 0;
  padding-right: 0.35rem;
}

.testimonial-author {
  font-weight: 500;
  margin-top: 1.2rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.testimonial-dots span.is-active {
  background: rgba(255, 255, 255, 0.95);
}

.academy-gallery {
  background: #f3f3f3;
  padding-top: 3.2rem;
}

.gallery-social {
  text-align: center;
  margin-bottom: 1rem;
  color: #222;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
}

.gallery-social span {
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid img.gallery-focus-top {
  object-position: center top;
}

.gallery-grid img.gallery-focus-lower {
  object-position: center 70%;
}

.gallery-grid img.gallery-focus-upper {
  object-position: center 25%;
}

.servicos-page {
  background: #f3f3f3;
}

.servicos-hero {
  height: min(48vh, 490px);
  min-height: 320px;
  background: url("https://static.wixstatic.com/media/b5e6a7_09609d3f43644cb6b0351a7d4c9f5117~mv2.png/v1/crop/x_0,y_360,w_3000,h_1080/fill/w_1900,h_720,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/SCA-13.png")
    center / cover no-repeat;
}

.servicos-hero-overlay {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
}

.servicos-hero-overlay h1,
.servicos-main-title,
.service-card h3 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.06em;
}

.servicos-hero-overlay h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  color: #222;
}

.servicos-list {
  padding-top: 5rem;
}

.servicos-main-title {
  text-align: center;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.servicos-title-line {
  width: 110px;
  height: 3px;
  margin: 0.7rem auto 3.2rem;
  background: #69a3a2;
}

.service-block {
  position: relative;
  margin: 0 auto 4.5rem;
  width: min(1080px, 100%);
  min-height: 330px;
  display: grid;
  align-items: center;
  scroll-margin-top: 140px;
}

.service-media {
  width: min(74%, 760px);
}

.service-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card {
  position: absolute;
  right: 0;
  width: min(44%, 480px);
  background: #f5f5f5;
  border: 1px solid #d8d8d8;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: clamp(1.2rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3f4241;
}

.service-block.reverse .service-media {
  margin-left: auto;
}

.service-block.reverse .service-card {
  left: 0;
  right: auto;
}

.experiences-page {
  background: #ececec;
}

.experiences-intro {
  padding-top: 4.2rem;
  padding-bottom: 1.8rem;
}

.experiences-intro-wrap {
  max-width: 900px;
  text-align: center;
}

.experiences-intro-wrap h1 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(2.3rem, 4.3vw, 4.4rem);
}

.experiences-subtitle {
  margin: 0 0 1rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.experiences-intro-wrap p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.02rem;
  color: #454947;
  line-height: 1.7;
}

.experiences-list {
  padding-top: 1rem;
}

.experience-block {
  position: relative;
  width: min(1180px, 100%);
  min-height: 390px;
  margin: 0 auto 4.2rem;
  display: grid;
  align-items: center;
  scroll-margin-top: 140px;
}

.experience-media {
  width: min(74%, 840px);
}

.experience-media img {
  width: 100%;
  aspect-ratio: 16 / 7.3;
  object-fit: cover;
}

.experience-card {
  position: absolute;
  right: 0;
  width: min(48%, 590px);
  background: #f5f5f5;
  border: 1px solid #cfcfcf;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: clamp(1.3rem, 2.1vw, 2.3rem);
  display: flex;
  flex-direction: column;
}

.experience-card h2 {
  margin: 0 0 0.8rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: 0.05em;
}

.experience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #3f4241;
  line-height: 1.8;
}

.service-arrow,
.experience-arrow {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-top: 1rem;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #202322;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.experience-block.reverse .experience-media {
  margin-left: auto;
}

.experience-block.reverse .experience-card {
  left: 0;
  right: auto;
}

.equipa-page {
  background: #ececec;
}

.equipa-hero {
  height: min(42vh, 420px);
  min-height: 240px;
  background: url("https://static.wixstatic.com/media/b5e6a7_09609d3f43644cb6b0351a7d4c9f5117~mv2.png/v1/crop/x_0,y_260,w_3000,h_1200/fill/w_1900,h_760,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/SCA-13.png")
    center / cover no-repeat;
}

.equipa-hero-overlay {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
}

.equipa-hero-overlay h1,
.equipa-intro-wrap h2,
.team-card h3 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
}

.equipa-hero-overlay h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: 0.11em;
}

.equipa-intro {
  padding-top: 4.5rem;
  padding-bottom: 2.3rem;
}

.equipa-intro-wrap {
  max-width: 760px;
}

.equipa-intro-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0.04em;
}

.equipa-intro-wrap p {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  color: #3f4241;
  line-height: 1.75;
}

.equipa-callout {
  margin-top: 1.5rem;
  color: #69a3a2;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.equipa-members {
  padding-top: 0.5rem;
}

.team-member {
  position: relative;
  width: min(1180px, 100%);
  min-height: 330px;
  margin: 0 auto 2.6rem;
  display: grid;
  align-items: center;
}

.team-photo {
  width: min(63%, 730px);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.team-photo img.team-photo-contain {
  object-fit: contain;
  background: #f5f5f5;
  object-position: center center;
}

.team-card {
  position: absolute;
  right: 0;
  width: min(50%, 620px);
  background: #f5f5f5;
  border: 1px solid #cfcfcf;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: clamp(1.2rem, 1.9vw, 2rem);
}

.team-role {
  margin: 0 0 0.5rem;
  color: #6fa9a5;
  font-size: 0.95rem;
}

.team-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: 0.04em;
}

.team-line {
  width: 110px;
  height: 3px;
  background: #69a3a2;
  margin: 0.55rem 0 0.95rem;
}

.team-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3f4241;
}

.team-plus {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 48px;
  height: 48px;
  background: #1f2322;
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.team-plus:focus-visible {
  outline: 2px solid #69a3a2;
  outline-offset: 3px;
}

.team-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 120;
}

.team-modal.is-open {
  display: flex;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 22, 0.58);
}

.team-modal-panel {
  position: relative;
  width: min(720px, 94vw);
  max-height: min(82vh, 840px);
  overflow: auto;
  background: #f7f7f7;
  border: 1px solid #d7d7d7;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  padding: clamp(1.4rem, 2.6vw, 2.3rem);
}

.team-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 42px;
  height: 42px;
  border: 0;
  background: #1f2322;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.team-modal-role {
  margin: 0 0 0.55rem;
  color: #6fa9a5;
  font-size: 0.95rem;
}

.team-modal-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 0.04em;
}

.team-modal-text {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #3f4241;
  white-space: pre-line;
}

body.modal-open {
  overflow: hidden;
}

.team-member.reverse .team-photo {
  margin-left: auto;
}

.team-member.reverse .team-card {
  left: 0;
  right: auto;
}

.contactos-page {
  background: #efefef;
}

.contactos-main {
  padding: 4.8rem 0 5.6rem;
}

.contactos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.4rem, 5vw, 6rem);
  align-items: start;
  max-width: 980px;
}

.contact-form-col h1,
.contact-info-col h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 0.05em;
}

.contact-form,
.contact-info-col {
  font-size: 0.93rem;
  color: #3b3e3d;
}

.contact-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
}

.field-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: #e5e5e5;
  color: #3d3f3f;
  padding: 0.72rem 0.85rem;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b0b0b0;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.45rem;
  margin-bottom: 1rem !important;
}

.check-row input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #69a3a2;
}

.check-row span {
  font-size: 0.82rem;
}

.contact-submit {
  width: min(220px, 100%);
  border: 0;
  background: #69a3a2;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.78rem 1rem;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-form-status {
  margin: 0.9rem 0 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form-status.is-success {
  color: #2d6a4f;
}

.contact-form-status.is-error {
  color: #b42318;
}

.contact-details {
  margin: 1rem 0 1.8rem;
}

.contact-details div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0.65rem;
  margin-bottom: 0.52rem;
}

.contact-details dt {
  font-weight: 600;
}

.contact-details dd {
  margin: 0;
}

.facebook-card {
  border: 1px solid #ddd;
  background: #fff;
  max-width: 380px;
}

.fb-head {
  display: flex;
  gap: 0.62rem;
  align-items: center;
  padding: 0.7rem;
  border-bottom: 1px solid #ececec;
}

.fb-logo {
  width: 38px;
  height: 38px;
  background: #1f2322;
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fb-head p {
  margin: 0;
  color: #284f8d;
}

.fb-head small {
  color: #666;
}

.fb-actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ececec;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  color: #4d4f4f;
}

.social-handle {
  margin: 0.95rem 0 0;
  color: #3a3d3d;
  font-size: 0.9rem;
}

.site-footer-main {
  background: url("photos/35B566AD-C791-4F8A-8B50-195C276C22F3.jpg") center / cover no-repeat;
  padding: 2.6rem 0 3.2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 1.04rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-row p {
  margin: 0;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  line-height: 1.38;
}

.contact-row .icon {
  display: inline-flex;
  width: 1.8rem;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}

.footer-fps {
  width: min(320px, 100%);
  filter: brightness(0);
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-partners img {
  max-height: 70px;
  width: auto;
  filter: brightness(0);
}

.footer-social h3 {
  display: inline-block;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  background: rgba(120, 120, 120, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: #fff;
  line-height: 1.45;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  color: #111;
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: #111;
}

.social-links a.whatsapp-social-link svg {
  width: 24px;
  height: 24px;
  display: block;
}

.site-footer-bottom {
  background: #fff;
  text-align: center;
  padding: 1.45rem 0 1.6rem;
}

.copyright {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.footer-credit {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.footer-credit a {
  color: inherit;
}

.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2.2rem;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #69a3a2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 42px;
  height: 42px;
  fill: #fff;
}

.include-error {
  padding: 0.75rem 1rem;
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 126px;
    right: 4%;
    background: #fff;
    border: 1px solid #e5e6e6;
    border-radius: 12px;
    padding: 0.8rem;
    flex-direction: column;
    min-width: 210px;
    gap: 0.8rem;
    align-items: stretch;
    text-align: left;
    z-index: 30;
  }

  .main-nav a,
  .main-nav .nav-parent {
    display: block;
    width: 100%;
    text-align: left;
  }

  .nav-item-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.25rem 0 0.2rem 0.8rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding: 0.35rem 0;
    font-size: 0.84rem;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-stage {
    min-height: 380px;
    height: 58vh;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-card {
    width: min(420px, 88%);
    padding: 1.4rem 1.5rem 1.4rem 1.3rem;
  }

  h1 {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
  }

  .quote {
    padding: 1.5rem 0;
  }

  .home-quote-wrap h1 {
    font-size: clamp(1rem, 5.5vw, 1.35rem);
    letter-spacing: 0.08em;
  }

  .home-quote-band {
    min-height: 320px;
  }

  .page-video-hero {
    min-height: 240px;
  }

  .page-video-hero-content h1 {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
    letter-spacing: 0.05em;
  }

  .formacao-hero {
    min-height: 300px;
  }

  .formacao-hero .page-video-hero-content h1 {
    font-size: clamp(1.25rem, 7vw, 2rem);
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  .formacao-hero .page-video-hero-content p {
    font-size: 0.95rem;
  }

  .formacao-intro {
    padding-top: 2.6rem;
    padding-bottom: 1.8rem;
  }

  .formacao-intro-wrap h2,
  .formacao-level-wrap h3 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .formacao-intro-line {
    margin-bottom: 1.1rem;
  }

  .formacao-intro-wrap p,
  .formacao-level-wrap p,
  .formacao-level-wrap li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .formacao-level {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .formacao-f4-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .formacao-level-grid,
  .formacao-level-grid.reverse {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .formacao-level-grid.reverse .formacao-level-media,
  .formacao-level-grid.reverse .formacao-level-content {
    order: initial;
  }

  .formacao-level-media img {
    min-height: 260px;
  }

  .competicao-hero {
    min-height: 270px;
  }

  .competicao-hero .page-video-hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .competicao-intro {
    padding-top: 2.3rem;
    padding-bottom: 1.2rem;
  }

  .competicao-intro-wrap h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .competicao-intro-line {
    margin-bottom: 1rem;
  }

  .competicao-intro-wrap p,
  .competicao-detail-col li {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .competicao-detail {
    padding-top: 0.4rem;
    padding-bottom: 1.4rem;
  }

  .competicao-detail-wrap,
  .competicao-detail-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .competicao-detail-media img {
    min-height: 260px;
  }

  .competicao-cta-text {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .competicao-cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .clinicas-hero {
    min-height: 270px;
  }

  .clinicas-hero .page-video-hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .clinicas-intro {
    padding-top: 2.3rem;
    padding-bottom: 0.7rem;
  }

  .clinicas-intro-wrap h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .clinicas-intro-line {
    margin-bottom: 1rem;
  }

  .clinicas-intro-wrap p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .clinicas-values {
    font-size: 1rem;
  }

  .clinicas-gallery {
    padding-top: 0.15rem;
    padding-bottom: 1rem;
  }

  .clinicas-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .clinicas-gallery-item img {
    min-height: 250px;
  }

  .estagios-hero {
    min-height: 270px;
  }

  .estagios-hero .page-video-hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .estagios-intro {
    padding-top: 2.3rem;
    padding-bottom: 0.9rem;
  }

  .estagios-intro-wrap h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .estagios-intro-line {
    margin-bottom: 1rem;
  }

  .estagios-intro-wrap p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .estagios-block {
    padding-top: 0.2rem;
    padding-bottom: 1.1rem;
  }

  .estagios-block-grid,
  .estagios-block-grid.reverse {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .estagios-block-grid.reverse .estagios-block-media,
  .estagios-block-grid.reverse .estagios-block-content {
    order: initial;
  }

  .estagios-block-media img {
    min-height: 250px;
  }

  .estagios-block-content h3 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .estagios-block-content p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .estagios-values {
    font-size: 1rem;
  }

  .estagios-cta-text {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .estagios-cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .team-building-hero {
    min-height: 300px;
  }

  .team-building-hero .page-video-hero-content h1 {
    font-size: clamp(1.2rem, 6.3vw, 1.9rem);
    line-height: 1.4;
    letter-spacing: 0.05em;
  }

  .team-building-intro {
    padding-top: 2.3rem;
    padding-bottom: 0.8rem;
  }

  .team-building-intro-wrap h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .team-building-intro-line {
    margin-bottom: 1rem;
  }

  .team-building-intro-wrap p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .team-building-values {
    font-size: 1rem;
  }

  .team-building-gallery {
    padding-top: 0.15rem;
    padding-bottom: 0.45rem;
  }

  .team-building-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .team-building-gallery-item img {
    min-height: 250px;
  }

  .team-building-cta-text {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .team-building-cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .festas-hero {
    min-height: 270px;
  }

  .festas-hero .page-video-hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .festas-intro {
    padding-top: 2.3rem;
    padding-bottom: 0.8rem;
  }

  .festas-intro-wrap h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .festas-intro-line {
    margin-bottom: 1rem;
  }

  .festas-intro-wrap p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .festas-values {
    font-size: 1rem;
  }

  .festas-gallery {
    padding-top: 0.15rem;
    padding-bottom: 0.45rem;
  }

  .festas-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .festas-gallery-item img {
    min-height: 250px;
  }

  .festas-cta-text {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .festas-cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .aulas-hero {
    min-height: 270px;
  }

  .aulas-hero .page-video-hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .aulas-columns {
    padding-top: 2.3rem;
    padding-bottom: 0.8rem;
  }

  .aulas-columns-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .aulas-col h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .aulas-col-line {
    margin-bottom: 1rem;
  }

  .aulas-col p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .aulas-values {
    font-size: 1rem;
  }

  .aulas-gallery {
    padding-top: 0.15rem;
    padding-bottom: 0.45rem;
  }

  .aulas-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .aulas-gallery-item img {
    min-height: 250px;
  }

  .aulas-cta-text {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .aulas-cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .pack-hero {
    min-height: 270px;
  }

  .pack-hero .page-video-hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .pack-intro {
    padding-top: 2.3rem;
    padding-bottom: 0.8rem;
  }

  .pack-intro-wrap h2 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .pack-intro-line {
    margin-bottom: 1rem;
  }

  .pack-intro-wrap p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .pack-values {
    font-size: 1rem;
  }

  .pack-gallery {
    padding-top: 0.15rem;
    padding-bottom: 0.45rem;
  }

  .pack-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pack-gallery-item img {
    min-height: 250px;
  }

  .pack-cta-text {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .pack-cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .home-intro {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .home-team-grid {
    grid-template-columns: 1fr;
  }

  .home-team-media,
  .home-team-media img {
    min-height: 260px;
  }

  .home-intro-copy h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.4rem);
  }

  .home-intro-line {
    width: 120px;
    margin: 0 auto 1.6rem;
    height: 3px;
  }

  .home-intro-copy p {
    font-size: clamp(0.82rem, 3.3vw, 1rem);
    line-height: 1.55;
  }

  .home-intro-btn {
    margin-top: 1.3rem;
    padding: 0.62rem 1.45rem;
    font-size: 0.95rem;
  }

  .home-services {
    padding-top: 1.5rem;
    padding-bottom: 1.6rem;
  }

  .services-slider {
    min-height: 430px;
  }

  .service-slide {
    padding: 1rem;
  }

  .service-slide-card {
    width: min(400px, 85%);
    min-height: 180px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(213, 215, 215, 0.38);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .service-slide-card h3 {
    font-size: clamp(1.15rem, 6vw, 2rem);
  }

  .service-slide-card a {
    width: 56px;
    height: 56px;
    right: -18px;
    bottom: -18px;
    font-size: 2rem;
  }

  .services-arrow {
    font-size: 3.2rem;
  }

  .services-arrow-left {
    left: 0.4rem;
  }

  .services-arrow-right {
    right: 0.4rem;
  }

  .services-dots {
    gap: 0.5rem;
  }

  .services-dot {
    width: 9px;
    height: 9px;
  }

  .forecast-cta {
    min-height: 220px;
  }

  .forecast-cta-text {
    font-size: clamp(1.35rem, 5vw, 2rem);
    letter-spacing: 0.06em;
    padding: 0 1rem;
    text-align: center;
  }

  .forecast-cta-arrow {
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
  }

  .forecast-main {
    padding: 2rem 0 3.2rem;
  }

  .forecast-wrap {
    text-align: center;
  }

  .forecast-wrap h1 {
    margin: 0;
    max-width: none;
    line-height: 1;
  }

  .forecast-iframe {
    height: 470px;
  }

  .academy-intro {
    padding-top: 3rem;
  }

  .academy-intro-wrap h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .academy-intro-wrap p,
  .academy-copy p,
  .academy-copy li,
  .testimonials-inner p {
    font-size: 1rem;
  }

  .academy-grid {
    grid-template-columns: 1fr;
  }

  .academy-copy {
    padding: 2rem 1.25rem;
  }

  .academy-photo img {
    min-height: 240px;
  }

  .testimonials-inner h2 {
    letter-spacing: 0.08em;
  }

  .academy-testimonials-overlay {
    height: 390px;
  }

  .testimonial-quote {
    max-height: 130px;
  }

  .testimonial-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.9rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.45);
    z-index: 2;
  }

  .testimonial-arrow.left {
    left: 0.7rem;
  }

  .testimonial-arrow.right {
    right: 0.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .servicos-hero {
    min-height: 250px;
  }

  .servicos-main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .service-block {
    min-height: auto;
    margin-bottom: 2.2rem;
    display: block;
  }

  .service-media,
  .service-card {
    width: 100%;
  }

  .service-card {
    position: static;
    margin-top: 0;
    border-top: 0;
    box-shadow: none;
  }

  .service-card h3 {
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }

  .service-card p {
    font-size: 0.96rem;
  }

  .experiences-intro {
    padding-top: 2.5rem;
  }

  .experience-block {
    min-height: auto;
    margin-bottom: 2.2rem;
    display: block;
  }

  .experiences-subtitle {
    font-size: clamp(1.25rem, 6vw, 1.8rem);
  }

  .experience-media,
  .experience-card {
    width: 100%;
  }

  .experience-media img {
    aspect-ratio: 16 / 10;
  }

  .experience-card {
    position: static;
    box-shadow: none;
    border-top: 0;
  }

  .experience-card h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .experience-card p {
    font-size: 0.95rem;
  }

  .service-arrow,
  .experience-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .equipa-hero {
    min-height: 190px;
  }

  .equipa-intro {
    padding-top: 2.4rem;
    padding-bottom: 1.4rem;
  }

  .equipa-intro-wrap p {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .team-member {
    min-height: auto;
    margin-bottom: 2.1rem;
    display: block;
  }

  .team-photo,
  .team-card {
    width: 100%;
  }

  .team-photo img {
    aspect-ratio: 16 / 11;
  }

  .team-card {
    position: static;
    box-shadow: none;
    border-top: 0;
  }

  .team-card h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .team-card p {
    font-size: 0.95rem;
  }

  .team-plus {
    right: 0;
    bottom: 0;
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .contactos-main {
    padding: 2.4rem 0 3.2rem;
  }

  .contactos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-col h1,
  .contact-info-col h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .field-row.two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.92rem;
  }

  .contact-details div {
    grid-template-columns: 80px 1fr;
  }

  .facebook-card {
    max-width: none;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .site-footer-main {
    padding: 1.6rem 0 2rem;
  }

  .footer-col h3 {
    margin-bottom: 0.7rem;
    font-size: 0.98rem;
  }

  .footer-contacts {
    align-items: center;
    gap: 0.65rem;
  }

  .contact-row {
    justify-content: center;
    gap: 0.6rem;
  }

  .contact-row .icon {
    width: 1.3rem;
    font-size: 1.2rem;
  }

  .contact-row p {
    font-size: 0.9rem;
    text-align: left;
  }

  .footer-fps {
    width: min(240px, 82%);
    margin: 0 auto;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    justify-content: center;
    margin-top: 0.3rem;
  }

  .footer-partners {
    flex-wrap: wrap;
  }

  .copyright {
    font-size: 0.82rem;
    line-height: 1.4;
    padding: 0 0.75rem;
  }

  .footer-credit {
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}
