/* ============================================================
   ESPAÇO RELASHANTI - Landing Page Stylesheet
   Premium editorial design · Built with Poppins & brand palette
   ============================================================ */

/* ---------------------------------------------------------
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   --------------------------------------------------------- */
:root {
  /* Brand Colors */
  --azul-profundo: #063866;
  --azul-institucional: #0B5AAA;
  --azul-petroleo: #075F78;
  --azul-claro: #9FC6CF;
  --azul-agua: #35B9C7;
  --branco: #FFFFFF;
  --off-white: #F7FAFB;
  --texto: #032B4F;
  --cinza-azulado: #6F858D;

  /* Spacing Scale */
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 36px;
  --space-6: 56px;
  --space-7: 80px;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 16px 40px rgba(3, 43, 79, 0.16);
  --shadow-card: 0 20px 55px rgba(3, 43, 79, 0.22);
  --shadow-blue: 0 18px 45px rgba(11, 90, 170, 0.30);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--azul-institucional), var(--azul-profundo));
  --gradient-hero-bg: linear-gradient(160deg, var(--off-white) 0%, #eaf4f8 100%);

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header height (used for offset) */
  --header-height: 80px;
}


/* ---------------------------------------------------------
   1. CSS RESET & BASE STYLES
   --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 800;
}


/* ---------------------------------------------------------
   2. UTILITY CLASSES
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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


/* ---------------------------------------------------------
   3. HEADER
   --------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(3, 43, 79, 0.06);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 30px rgba(3, 43, 79, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  max-height: 30px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header__nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--texto);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul-institucional);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.header__nav-link:hover {
  color: var(--azul-institucional);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--texto);
  border-radius: 4px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ---------------------------------------------------------
   4. HERO SECTION
   --------------------------------------------------------- */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero-bg);
}

/* Watercolor texture blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(159, 198, 207, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(53, 185, 199, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-6);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top:-65px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azul-institucional);
  border: 2px solid var(--azul-claro);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  width: fit-content;
  background: rgba(159, 198, 207, 0.12);
}

.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--azul-profundo);
  letter-spacing: -0.04em;
}

.hero__title span {
  color: var(--azul-institucional);
}

.hero__subtitle {
  font-size: 17px;
  color: var(--cinza-azulado);
  line-height: 1.4;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__seals {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-1);
}

.hero__seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--azul-petroleo);
  background: rgba(159, 198, 207, 0.18);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

.hero__seal i,
.hero__seal svg {
  font-size: 14px;
  color: var(--azul-agua);
}

/* Hero Image */
.hero__image-wrapper {
  position: relative;
}

.hero__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* Floating Price Card */
.hero__price-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--branco);
  border: 2px solid var(--azul-institucional);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  min-width: 240px;
  z-index: 2;
}

.hero__price-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza-azulado);
  margin-bottom: var(--space-3);
}

.hero__price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
}

.hero__price-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(159, 198, 207, 0.3);
}

.hero__price-label {
  font-size: 13px;
  color: var(--cinza-azulado);
  font-weight: 500;
}

.hero__price-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--azul-profundo);
  letter-spacing: -0.02em;
}

.hero__price-value small {
  font-size: 13px;
  font-weight: 500;
  color: var(--cinza-azulado);
}

.hero__price-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.hero__price-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--azul-institucional);
  background: rgba(14, 173, 191, 0.10);
  border: 1px solid rgba(14, 173, 191, 0.20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero__price-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.hero__price-button {
  gap: 8px;
}

.hero__price-button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.hero__price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-3);
  padding: 12px 20px;
  font-size: 13px;
}


/* ---------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn i,
.btn svg {
  font-size: 18px;
  flex-shrink: 0;
}

/* Primary */
.btn--primary {
  background: var(--gradient-primary);
  color: var(--branco);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(11, 90, 170, 0.38);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Secondary */
.btn--secondary {
  background: var(--branco);
  color: var(--azul-profundo);
  border: 2px solid var(--azul-institucional);
}

.btn--secondary:hover {
  background: var(--azul-institucional);
  color: var(--branco);
  border-color: var(--azul-institucional);
  transform: translateY(-2px);
}

.btn--secondary:active {
  transform: translateY(0);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--gradient-primary);
  color: var(--branco);
  box-shadow: var(--shadow-blue);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(11, 90, 170, 0.38);
}

.btn--whatsapp:active {
  transform: translateY(0);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--azul-profundo);
}

.btn--ghost:hover {
  background: rgba(11, 90, 170, 0.08);
}

/* Small variant */
.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}


/* ---------------------------------------------------------
   6. INCLUSIVE STRIP
   --------------------------------------------------------- */
.inclusive {
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  border: 1px solid rgba(159, 198, 207, 0.2);
}

.inclusive__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.inclusive__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  min-width: 0;
}

.inclusive__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(159, 198, 207, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-institucional);
  font-size: 24px;
  padding-top:9px;
}

.inclusive__text {
  font-size: 16px;
  font-weight: 800;
  color: var(--texto);
  line-height: 1.3;
}


/* ---------------------------------------------------------
   7. HOW IT WORKS
   --------------------------------------------------------- */
.how-it-works {
  background: var(--off-white);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
}

/* Connecting line */
.how-it-works__grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(16.667% + 20px);
  right: calc(16.667% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--azul-claro), var(--azul-agua), var(--azul-claro));
  border-radius: 2px;
  z-index: 0;
}

.how-it-works__step {
  background: var(--branco);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.how-it-works__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.how-it-works__number {
  font-size: 64px;
  font-weight: 900;
  color: var(--azul-claro);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.04em;
}

.how-it-works__step-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--azul-profundo);
  margin-bottom: var(--space-2);
}

.how-it-works__step-desc {
  font-size: 15px;
  color: var(--cinza-azulado);
  line-height: 1.6;
}


/* ---------------------------------------------------------
   8. ROOMS SECTION
   --------------------------------------------------------- */
.rooms {
  background: var(--branco);
}

.rooms__header {
  margin-bottom: var(--space-5);
}

.rooms__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.rooms__gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.rooms__gallery-item--large {
  grid-row: span 2;
}

.rooms__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rooms__gallery-item:hover img {
  transform: scale(1.04);
}

.room-card {
  background: var(--branco);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.room-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}

.room-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--azul-profundo);
  margin-bottom: var(--space-1);
}

.room-card__desc {
  font-size: 14px;
  color: var(--cinza-azulado);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
}

.room-card__amenity {
  font-size: 12px;
  font-weight: 600;
  color: var(--azul-petroleo);
  background: rgba(159, 198, 207, 0.15);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.rooms__actions {
  text-align: center;
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}


/* ---------------------------------------------------------
   9. PRICING SECTION
   --------------------------------------------------------- */
.pricing {
  background: var(--azul-profundo);
  position: relative;
  overflow: hidden;
}

/* Watercolor texture */
.pricing::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11, 90, 170, 0.3) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(53, 185, 199, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

.pricing__header .section-kicker {
  color: var(--azul-agua);
}

.pricing__header .section-title {
  color: var(--branco);
}

.pricing__header .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Tabs */
.pricing__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 6px;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing__tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.pricing__tab:hover {
  color: var(--branco);
}

.pricing__tab.active {
  background: var(--branco);
  color: var(--azul-profundo);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Cards Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative;
  z-index: 1;
  align-items: start;
}

.price-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition-base);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
}

/* Featured */
.price-card--featured {
  border: 3px solid var(--azul-agua);
  transform: scale(1.05);
  z-index: 2;
}

.price-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azul-agua);
  color: var(--branco);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-profundo);
  margin-bottom: var(--space-2);
}

.price-card__desc {
  font-size: 14px;
  color: var(--cinza-azulado);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.price-card__value {
  font-size: 56px;
  font-weight: 800;
  color: var(--azul-profundo);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-1);
}

.price-card__value small {
  font-size: 18px;
  font-weight: 600;
  vertical-align: super;
}

.price-card__period {
  font-size: 14px;
  color: var(--cinza-azulado);
  margin-bottom: var(--space-3);
}

.price-card__features {
  text-align: left;
  margin-bottom: var(--space-3);
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--texto);
  padding: 3px 0;
}

.price-card__feature i,
.price-card__feature svg {
  color: var(--azul-agua);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}

.price-card .btn {
  width: 100%;
}


/* ---------------------------------------------------------
   10. COMPARISON SECTION
   --------------------------------------------------------- */
.comparison {
  background: var(--off-white);
}

.comparison__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* Conventional panel */
.comparison__conventional {
  background: var(--branco);
  border: 2px solid rgba(159, 198, 207, 0.3);
  border-radius: 24px;
  padding: 40px;
}

.comparison__panel-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.comparison__conventional .comparison__panel-title {
  color: var(--cinza-azulado);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.comparison__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 15px;
  line-height: 1.5;
}

.comparison__list-item i,
.comparison__list-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 18px;
}

.comparison__conventional .comparison__list-item i,
.comparison__conventional .comparison__list-item svg {
  color: #d9534f;
}

.comparison__conventional .comparison__list-item {
  color: var(--cinza-azulado);
}

/* VS badge */
.comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.comparison__vs-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--branco);
  color: var(--azul-profundo);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(159, 198, 207, 0.3);
  margin: 0 -28px;
  position: relative;
  z-index: 3;
}

/* Relashanti panel */
.comparison__relashanti {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 40px;
  color: var(--branco);
}

.comparison__relashanti .comparison__panel-title {
  color: var(--branco);
}

.comparison__relashanti .comparison__list-item {
  color: rgba(255, 255, 255, 0.92);
}

.comparison__relashanti .comparison__list-item i,
.comparison__relashanti .comparison__list-item svg {
  color: var(--azul-agua);
}


/* ---------------------------------------------------------
   11. GALLERY
   --------------------------------------------------------- */
.gallery {
  background: var(--branco);
}

.gallery__header {
  margin-bottom: var(--space-6);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-3);
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 107%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(6, 56, 102, 0.65));
  color: var(--branco);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}


/* ---------------------------------------------------------
   12. FOR WHO SECTION
   --------------------------------------------------------- */
.for-who {
  background: var(--off-white);
}

.for-who__header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.for-who__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.for-who__card {
  background: var(--branco);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: default;
}

.for-who__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.for-who__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(159, 198, 207, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  color: var(--azul-institucional);
  font-size: 22px;
}

.for-who__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.3;
}


/* ---------------------------------------------------------
   13. TESTIMONIALS
   --------------------------------------------------------- */
.testimonials {
  background: var(--off-white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.testimonial-card {
  background: var(--branco);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-card__quote-icon {
  font-size: 36px;
  color: var(--azul-claro);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-3);
}

.testimonial-card__star {
  color: #f5b731;
  font-size: 16px;
}

.testimonial-card__text {
  font-size: 16px;
  font-style: italic;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--azul-profundo);
}

.testimonial-card__profession {
  font-size: 13px;
  color: var(--cinza-azulado);
}


/* ---------------------------------------------------------
   14. LOCATION
   --------------------------------------------------------- */
.location {
  background: var(--branco);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.location__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(159, 198, 207, 0.1);
  min-height: 360px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  border-radius: var(--radius-md);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.location__address {
  font-size: 20px;
  font-weight: 700;
  color: var(--azul-profundo);
  line-height: 1.4;
}

.location__address-detail {
  font-size: 15px;
  color: var(--cinza-azulado);
  line-height: 1.6;
}

.location__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.location__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--azul-institucional);
  transition: color var(--transition-base);
}

.location__link:hover {
  color: var(--azul-profundo);
}

.location__link i,
.location__link svg {
  font-size: 18px;
}

.location__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.location__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.location__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}


/* ---------------------------------------------------------
   15. CTA FINAL
   --------------------------------------------------------- */
.cta-final {
  background: var(--azul-profundo);
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}


.cta-final-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.cta-final-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
}

.cta-final-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 43, 79, 0.84) 0%, rgba(4, 55, 98, 0.78) 48%, rgba(3, 43, 79, 0.9) 100%),
    radial-gradient(circle at 50% 20%, rgba(53, 185, 199, 0.28), transparent 42%),
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.12), transparent 34%);
}

/* Watercolor texture */
.cta-final::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(11, 90, 170, 0.3) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final::after {
  content: '';
  z-index: -1;
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(53, 185, 199, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.cta-final__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

/* Pulse animation for CTA */
.btn--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--shadow-blue);
  }
  50% {
    box-shadow: 0 18px 60px rgba(11, 90, 170, 0.5);
  }
}


/* ---------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------- */
.footer {
  background: var(--azul-profundo);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 0;
}

/* Watermark brand symbol */
.footer::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(11, 90, 170, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr .8fr 1.2fr;
  gap: var(--space-4);
  padding-bottom: var(--space-7);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__logo img {
  max-height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--branco);
  margin-bottom: var(--space-2);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base), opacity var(--transition-base);
}

.footer__link:hover {
  color: var(--branco);
  opacity: 1;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2);
}

.footer__contact-item i,
.footer__contact-item svg {
  color: var(--azul-agua);
  font-size: 16px;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: background var(--transition-base), color var(--transition-base);
}

.footer__social-link:hover {
  background: var(--azul-institucional);
  color: var(--branco);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-4);
}

.footer__bottom-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
}

.footer__bottom-link:hover {
  color: var(--branco);
}


/* ---------------------------------------------------------
   17. FLOATING WHATSAPP
   --------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-blue);
  z-index: 999;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 55px rgba(11, 90, 170, 0.45);
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: var(--shadow-blue), 0 0 0 0 rgba(11, 90, 170, 0.35);
  }
  50% {
    box-shadow: var(--shadow-blue), 0 0 0 14px rgba(11, 90, 170, 0);
  }
}

/* Mobile bottom bar variant */
.whatsapp-float--bar {
  display: none;
}


/* ---------------------------------------------------------
   18. MOBILE MENU
   --------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--azul-profundo);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-7) var(--space-5);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 43, 79, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.mobile-menu__link {
  font-size: 22px;
  font-weight: 700;
  color: var(--branco);
  padding: var(--space-2) 0;
  transition: opacity var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__link:hover {
  opacity: 0.8;
}

.mobile-menu__cta {
  margin-top: auto;
  padding-top: var(--space-5);
}

.mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
}


/* ---------------------------------------------------------
   19. ANIMATION HELPERS (GSAP / Scroll)
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.96);
}

.reveal--scale.revealed {
  opacity: 1;
  transform: scale(1);
}


/* ---------------------------------------------------------
   20. SECTION TITLES
   --------------------------------------------------------- */
.section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--azul-institucional);
  margin-bottom: var(--space-2);
  display: block;
}

.section-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--azul-profundo);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-1);
}

.section-subtitle {
  font-size: 17px;
  color: var(--cinza-azulado);
  max-width: 600px;
  line-height: 1.4;
}

.section-subtitle.mx-auto {
  margin-left: auto;
  margin-right: auto;
}


/* ---------------------------------------------------------
   21. RESPONSIVE - Tablet (769px – 1024px)
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }

  .hero__title {
    font-size: clamp(32px, 5vw, 52px);
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .price-card {
    padding: 32px 24px;
  }

  .price-card__value {
    font-size: 44px;
  }

  .for-who__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .gallery__item--large {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-4);
  }

  .footer__grid > :last-child {
    grid-column: 1 / -1;
  }
}


/* ---------------------------------------------------------
   21. RESPONSIVE - Mobile (max-width: 768px)
   --------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  /* Header mobile */
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__logo img {
    max-height: 36px;
  }

  /* Hero mobile */
  .hero {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 48px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero__content {
    text-align: center;
    align-items: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__seals {
    justify-content: center;
  }

  .hero__image {
    max-height: 360px;
  }

  .hero__price-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-3);
  }

  /* Inclusive mobile */
  .inclusive {
    padding: 24px;
  }

  .inclusive__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  /* How it works mobile */
  .how-it-works__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .how-it-works__grid::before {
    display: none;
  }

  .how-it-works__step {
    padding: 28px;
  }

  .how-it-works__number {
    font-size: 48px;
  }

  /* Rooms mobile */
  .rooms__gallery {
    grid-template-columns: 1fr;
  }

  .rooms__gallery-item--large {
    grid-row: span 1;
  }

  .rooms__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Pricing mobile */
  .pricing__tabs {
    flex-direction: column;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .pricing__tab {
    width: 100%;
    text-align: center;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .price-card--featured {
    transform: none;
    order: -1;
  }

  .price-card--featured:hover {
    transform: translateY(-4px);
  }

  .price-card {
    padding: 32px 24px;
  }

  .price-card__value {
    font-size: 44px;
  }

  /* Comparison mobile */
  .comparison__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .comparison__vs {
    justify-content: center;
  }

  .comparison__vs-badge {
    margin: 0;
  }

  .comparison__conventional,
  .comparison__relashanti {
    padding: 28px;
  }

  /* Gallery mobile */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* For who mobile */
  .for-who__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  /* Testimonials mobile */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Location mobile */
  .location__inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .location__photo {
    order: -1;
  }

  .location__map {
    min-height: 260px;
  }

  .location__map iframe {
    min-height: 260px;
  }

  .location__actions {
    flex-direction: column;
  }

  .location__actions .btn {
    width: 100%;
  }

  /* CTA Final mobile */
  .cta-final__title {
    font-size: clamp(24px, 6vw, 36px);
  }

  /* Footer mobile */
  .footer {
    padding-top: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }

  /* Floating WhatsApp mobile */
  .whatsapp-float {
    display: none;
  }

  .whatsapp-float--bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--branco);
    font-size: 15px;
    font-weight: 700;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(3, 43, 79, 0.2);
    text-decoration: none;
    border-radius: 0;
  }

  .whatsapp-float--bar i,
  .whatsapp-float--bar svg {
    font-size: 22px;
  }

  /* Add bottom padding to body for mobile bar */
  body {
    padding-bottom: 56px;
  }

  /* Buttons responsive */
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .inclusive__inner {
    grid-template-columns: 1fr;
  }

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

  .gallery__item--large {
    grid-column: span 1;
  }

  .for-who__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__price-card {
    min-width: auto;
  }
}


/* ---------------------------------------------------------
   22. PREFERS REDUCED MOTION
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .btn--pulse {
    animation: none;
  }
}

/* ---------------------------------------------------------
   23. POLIMENTO VISUAL RELASHANTI
   Mantem estrutura e conteudo, melhora acabamento, respiro e responsivo
   --------------------------------------------------------- */
:root {
  --shadow-soft: 0 18px 44px rgba(3, 43, 79, 0.10);
  --shadow-card: 0 28px 70px rgba(3, 43, 79, 0.16);
  --shadow-blue: 0 18px 44px rgba(11, 90, 170, 0.22);
  --gradient-primary: linear-gradient(135deg, #0d68be 0%, #063866 100%);
  --gradient-hero-bg: radial-gradient(circle at 78% 18%, rgba(53, 185, 199, 0.22) 0, transparent 34%), linear-gradient(150deg, #fafdff 0%, #edf7fa 48%, #f7fafb 100%);
}

body {
  background: #f7fafb;
}

.container {
  max-width: 1180px;
}

.section-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

.header {
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(6, 56, 102, 0.08);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 42px rgba(3, 43, 79, 0.09);
}

.header__inner {
  gap: 22px;
}

.header__logo img,
.footer__logo img {
  object-fit: contain;
}

.header__nav {
  gap: 24px;
}

.header__nav-link {
  font-size: 14px;
}

.btn {
  min-height: 48px;
  box-shadow: none;
}

.btn--primary,
.btn--whatsapp {
  background: linear-gradient(135deg, #0d71c9, #064677);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 34px rgba(11, 90, 170, 0.24);
}

.btn--primary:hover,
.btn--whatsapp:hover {
  box-shadow: 0 22px 48px rgba(11, 90, 170, 0.30);
}

.btn--secondary {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(11, 90, 170, 0.20);
  box-shadow: 0 12px 30px rgba(3, 43, 79, 0.06);
}

.hero {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 120px;
  isolation: isolate;
}

.hero::before {
  top: 8%;
  right: 5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(159, 198, 207, 0.34) 0%, rgba(159, 198, 207, 0.14) 38%, transparent 72%);
}

.hero::after {
  bottom: -18%;
  left: -6%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(11, 90, 170, 0.08) 0%, transparent 68%);
}

.hero__inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.88fr);
  gap: 72px;
}

.hero__eyebrow {
  border: 1px solid rgba(11, 90, 170, 0.16);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 38px rgba(3, 43, 79, 0.07);
}

.hero__title {
  max-width: 760px;
  font-size: clamp(42px, 5.75vw, 64px);
  line-height: 0.96;
}

.hero__title span {
  display: inline;
  background: linear-gradient(120deg, #0b5aaa, #075f78 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 600px;
  font-size: 17px;
  color: #526d78;
}

.hero__seals {
  gap: 10px;
}

.hero__seal {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(159, 198, 207, 0.35);
  box-shadow: 0 10px 24px rgba(3, 43, 79, 0.05);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(159,198,207,0.30));
  z-index: -1;
  box-shadow: 0 30px 80px rgba(3, 43, 79, 0.14);
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: auto 28px 12px 28px;
  height: 30%;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent, rgba(6, 56, 102, 0.26));
  pointer-events: none;
}

.hero__image {
  aspect-ratio: 0.92 / 1;
  max-height: 560px;
  border-radius: 34px;
  box-shadow: none;
}

.hero__price-card {
  right: -28px;
  bottom: -34px;
  border: 1px solid rgba(11, 90, 170, 0.18);
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(3, 43, 79, 0.18);
}

.hero__price-card-title {
  color: #075f78;
}

.hero__price-card .hero__price-label {
  color: #607b88;
}

.hero__price-card .hero__price-icon {
  color: #075f78;
  background: rgba(14, 173, 191, 0.11);
  border-color: rgba(14, 173, 191, 0.24);
}

.hero__price-card .hero__price-item:hover .hero__price-icon {
  transform: translateY(-1px);
  background: rgba(14, 173, 191, 0.16);
  border-color: rgba(14, 173, 191, 0.34);
}

.inclusive-section {
  margin-top: -52px;
  position: relative;
  z-index: 10;
}

.inclusive {
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(159, 198, 207, 0.32);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.inclusive__title {
  color: var(--azul-profundo);
  margin-bottom: 28px;
  font-size: 30px;
  font-weight: 800;
}

.inclusive__item {
  justify-content: center;
  padding: 10px 8px;
  border-radius: 18px;
  transition: background var(--transition-base), transform var(--transition-base);
}

.inclusive__item:hover {
  transform: translateY(-2px);
}

.inclusive__icon,
.for-who__icon {
  background: linear-gradient(145deg, rgba(53,185,199,0.16), rgba(11,90,170,0.10));
  border: 1px solid rgba(11,90,170,0.10);
}

.section-kicker {
  color: #0b5aaa;
}

.section-title {
  letter-spacing: -0.04em;
}

.how-it-works,
.comparison,
.for-who,
.testimonials,
.faq {
  background: linear-gradient(180deg, #f7fafb 0%, #eef7fa 100%);
}

.how-it-works__grid::before {
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53,185,199,0.75), transparent);
}

.how-it-works__step,
.room-card,
.price-card,
.testimonial-card,
.faq__item,
.for-who__card {
  border: 1px solid rgba(159, 198, 207, 0.22);
  box-shadow: 0 18px 44px rgba(3, 43, 79, 0.08);
}

.how-it-works__step,
.room-card,
.price-card,
.testimonial-card {
  overflow: hidden;
}

.how-it-works__step::before,
.room-card::before,
.price-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}

.how-it-works__step {
  padding: 42px 34px;
}

.how-it-works__number {
  color: rgba(11, 90, 170, 0.18);
}

.rooms {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.rooms::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 198, 207, 0.18), transparent 70%);
}

.rooms__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 35px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.rooms__gallery {
  gap: 18px;
}

.rooms__gallery-item {
  min-height: 230px;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(3, 43, 79, 0.10);
}

.rooms__gallery-item--large {
  min-height: 480px;
}

.rooms__gallery-item::after,
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(6, 56, 102, 0.22));
  pointer-events: none;
}

.rooms__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.room-card {
  position: relative;
  padding: 26px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
}

.room-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-card__title i {
  color: var(--azul-institucional);
  font-size: 20px;
}

.room-card__amenity {
  background: rgba(159, 198, 207, 0.18);
  border: 1px solid rgba(159, 198, 207, 0.25);
}

.rooms__actions {
  margin-top: 8px;
  justify-content: flex-start;
}

.pricing {
  background: radial-gradient(circle at 75% 16%, rgba(53, 185, 199, 0.20), transparent 35%), linear-gradient(145deg, #052f57, #073f71 55%, #052d4e);
}

.pricing__grid {
  gap: 22px;
}

.price-card {
  padding: 38px 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #fafdff);
}

.price-card--featured {
  border: 1px solid rgba(53, 185, 199, 0.75);
  box-shadow: 0 30px 76px rgba(53, 185, 199, 0.20), 0 22px 56px rgba(0,0,0,0.12);
}

.price-card__badge {
  background: linear-gradient(135deg, #35b9c7, #0b5aaa);
  box-shadow: 0 14px 28px rgba(11, 90, 170, 0.20);
}

.price-card__value {
  color: #063866;
}

.comparison__grid {
  max-width: 1060px;
  margin: 0 auto;
}

.comparison__conventional,
.comparison__relashanti {
  border-radius: 30px;
  box-shadow: 0 24px 56px rgba(3, 43, 79, 0.09);
}

.comparison__relashanti {
  background: linear-gradient(145deg, #0b5aaa, #063866);
}

.gallery__grid {
  gap: 18px;
}

.gallery__item {
  min-height: 250px;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(3, 43, 79, 0.10);
}

.gallery__item--large {
  min-height: 520px;
}

.gallery__caption {
  opacity: 1;
  z-index: 2;
  padding-top: 48px;
}

.for-who__card {
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
}

.testimonial-card {
  position: relative;
  border-radius: 30px;
}

.location {
  background: #fff;
}

.location__inner {
  align-items: stretch;
}

.location__info {
  justify-content: center;
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(159, 198, 207, 0.22);
  background: linear-gradient(180deg, #fff, #f7fafb);
  box-shadow: 0 18px 44px rgba(3, 43, 79, 0.08);
}

.location__map {
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(3, 43, 79, 0.12);
  border: 1px solid rgba(159, 198, 207, 0.22);
}

.location__map iframe {
  border-radius: 30px;
}

.faq {
  border-top: 1px solid rgba(159, 198, 207, 0.15);
}

.faq__container {
  max-width: 860px;
}

.faq__header {
  margin-bottom: 48px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: rgba(255,255,255,0.88);
  border-radius: 24px;
  padding: 26px 28px;
}

.faq__question {
  color: var(--azul-profundo);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
}

.faq__answer {
  color: var(--cinza-azulado);
  font-size: 14px;
  line-height: 1.7;
}

.cta-final {
  background: radial-gradient(circle at 50% 0%, rgba(53,185,199,0.18), transparent 38%), linear-gradient(145deg, #052f57, #063866);
}

.cta-final__note {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
}

.footer {
  background: linear-gradient(180deg, #063866 0%, #032b4f 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  align-items: start;
}

.footer__col {
  min-width: 0;
}

.footer__reservation-copy {
  margin-bottom: 16px;
}

.footer__social-link,
.whatsapp-float {
  border: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu {
  background: linear-gradient(180deg, #063866, #032b4f);
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero__content {
    max-width: 820px;
  }

  .hero__image-wrapper {
    max-width: 720px;
    margin: 0 auto;
  }

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

  .rooms__gallery-item--large {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 82px;
  }

  .hero__inner {
    gap: 44px;
  }

  .hero__content {
    text-align: left;
    align-items: flex-start;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero__actions,
  .hero__seals {
    justify-content: flex-start;
  }

  .hero__image-wrapper::before {
    inset: -10px;
    border-radius: 30px;
  }

  .hero__image {
    max-height: none;
    aspect-ratio: 1 / 0.92;
    border-radius: 26px;
  }

  .hero__price-card {
    width: 100%;
    margin-top: 16px;
    border-radius: 24px;
  }

  .inclusive-section {
    margin-top: -34px;
  }

  .inclusive {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .inclusive__title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .inclusive__item {
    justify-content: flex-start;
  }

  .rooms__inner {
    gap: 28px;
  }

  .rooms__gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rooms__gallery-item,
  .rooms__gallery-item--large,
  .gallery__item,
  .gallery__item--large {
    min-height: 260px;
  }

  .rooms__actions {
    align-items: stretch;
  }

  .rooms__actions .btn {
    width: 100%;
  }

  .how-it-works__header,
  .rooms__header,
  .comparison__header,
  .for-who__header,
  .testimonials__header {
    margin-bottom: 42px;
  }

  .comparison__conventional,
  .comparison__relashanti,
  .location__info {
    padding: 26px;
  }

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

  .gallery__item--large {
    grid-column: span 1;
  }

  .location__info {
    order: 1;
  }

  .location__map {
    order: 2;
  }

  .footer__grid {
    gap: 38px;
  }
}

@media (max-width: 480px) {
  .hero__actions .btn,
  .location__actions .btn,
  .mobile-menu__cta .btn {
    white-space: normal;
    line-height: 1.25;
  }

  .inclusive__inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .inclusive__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .inclusive__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .price-card,
  .how-it-works__step,
  .testimonial-card,
  .faq__item,
  .room-card {
    padding: 24px 20px;
  }

  .price-card__value {
    font-size: 40px;
  }
}


/* ---------------------------------------------------------
   Premium GSAP hover effects
   --------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .how-it-works__step,
  .room-card,
  .price-card,
  .profession-card,
  .for-who__card,
  .testimonial-card,
  .faq__item,
  .comparison__conventional,
  .comparison__relashanti,
  .rooms__gallery-item,
  .gallery__item {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
  }

  .price-card--featured {
    transform: scale(1.035);
  }

  .price-card--featured:hover {
    transform: scale(1.035);
  }

  .gsap-hover-shine {
    position: absolute;
    inset: -1px;
    z-index: 1;
    pointer-events: none;
    transform: translateX(-130%);
    background: linear-gradient(
      110deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 255, 255, 0.18) 46%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 255, 255, 0.16) 56%,
      transparent 68%,
      transparent 100%
    );
    mix-blend-mode: screen;
  }

  .how-it-works__step > :not(.gsap-hover-shine),
  .room-card > :not(.gsap-hover-shine),
  .price-card > :not(.gsap-hover-shine),
  .profession-card > :not(.gsap-hover-shine),
  .for-who__card > :not(.gsap-hover-shine),
  .testimonial-card > :not(.gsap-hover-shine),
  .faq__item > :not(.gsap-hover-shine),
  .comparison__conventional > :not(.gsap-hover-shine),
  .comparison__relashanti > :not(.gsap-hover-shine) {
    position: relative;
    z-index: 2;
  }

  .how-it-works__step.is-gsap-hovered,
  .room-card.is-gsap-hovered,
  .price-card.is-gsap-hovered,
  .profession-card.is-gsap-hovered,
  .for-who__card.is-gsap-hovered,
  .testimonial-card.is-gsap-hovered,
  .faq__item.is-gsap-hovered {
    border-color: rgba(53, 185, 199, 0.42);
  }

  .btn,
  .pricing__tab,
  .mobile-menu__link,
  .header__nav-link,
  .inclusive__item,
  .price-card__feature,
  .comparison__list-item,
  .room-card__amenity,
  .footer__link,
  .footer__contact-item {
    will-change: transform;
  }

  .btn {
    position: relative;
    overflow: hidden;
  }

  .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-120%);
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transition: opacity 0.28s ease, transform 0.58s ease;
  }

  .btn:hover::after {
    opacity: 1;
    transform: translateX(120%);
  }

  .inclusive__item,
   .comparison__list-item,
  .room-card__amenity {
    border-radius: 16px;
    transition: background 0.28s ease, border-color 0.28s ease;
  }

  .comparison__list-item:hover,
  .room-card__amenity:hover {
    background: rgba(159, 198, 207, 0.14);
  }

  .rooms__gallery-item img,
  .gallery__item img {
    will-change: transform;
    backface-visibility: hidden;
  }

  .rooms__gallery-item::before,
  .gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.18), transparent 58%);
    transition: opacity 0.4s ease;
  }

  .rooms__gallery-item:hover::before,
  .gallery__item:hover::before {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .gsap-hover-shine {
    display: none !important;
  }
}

/* ---------------------------------------------------------
   Hero visual composition fix
   Mantém a imagem/card de preço estáveis e fora dos hovers globais.
   --------------------------------------------------------- */
.hero__image-wrapper {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  overflow: visible !important;
  transform: none;
  transform-style: flat;
  will-change: auto;
}

.hero__image-wrapper::before {
  pointer-events: none;
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: auto 20px 10px 20px;
  height: 30%;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent, rgba(6, 56, 102, 0.26));
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 535px;
  max-height: 560px;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  border-radius: 34px;
  transform: none;
  will-change: transform;
}

.hero__price-card {
  width: 320px;
  max-width: calc(100% - 32px);
  min-width: 0;
  right: -28px;
  bottom: -18px;
  z-index: 4;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero__image-wrapper {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .hero__price-card {
    right: 24px;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .hero__image-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero__image-wrapper::before {
    inset: -10px;
    border-radius: 30px;
  }

  .hero__image-wrapper::after {
    inset: auto 18px 12px 18px;
    border-radius: 22px;
  }

  .hero__image {
    min-height: 430px;
    max-height: none;
    aspect-ratio: 1 / 0.92;
    border-radius: 26px;
  }

  .hero__price-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -90px auto 0;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .hero__image {
    min-height: 390px;
  }

  .hero__price-card {
    width: calc(100% - 24px);
    margin-top: -78px;
    padding: 20px;
  }
}

/* ---------------------------------------------------------
   PRICING BACKGROUND VIDEO
   --------------------------------------------------------- */
.pricing.section-spacing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #052f57;
}

.pricing.section-spacing::before,
.pricing.section-spacing::after {
  z-index: 0;
}

.pricing-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(145deg, #052f57, #073f71 55%, #052d4e);
}

.pricing-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  filter: saturate(0.8) contrast(1.08) brightness(0.72);
  transform: scale(1.04);
}

.pricing-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 47, 87, 0.90) 0%,
      rgba(6, 58, 103, 0.76) 44%,
      rgba(5, 45, 78, 0.92) 100%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(53, 185, 199, 0.22),
      transparent 36%
    ),
    radial-gradient(
      circle at 82% 62%,
      rgba(255, 255, 255, 0.10),
      transparent 34%
    );
}

.pricing.section-spacing > .container {
  position: relative;
  z-index: 2;
}

.pricing .price-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 78px rgba(3, 31, 58, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pricing .price-card--featured {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(53, 185, 199, 0.82);
  box-shadow: 0 34px 88px rgba(53, 185, 199, 0.22), 0 26px 70px rgba(3, 31, 58, 0.28);
}

@media (max-width: 768px) {
  .pricing-bg-video video {
    opacity: 0.42;
    transform: scale(1.08);
  }

  .pricing-bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 47, 87, 0.94) 0%,
        rgba(6, 58, 103, 0.84) 48%,
        rgba(5, 45, 78, 0.96) 100%
      ),
      radial-gradient(circle at 20% 16%, rgba(53, 185, 199, 0.18), transparent 38%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-bg-video video {
    display: none;
  }
}


/* ---------------------------------------------------------
   Refinamento premium: hover dos itens do comparativo
   --------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .comparison__conventional .gsap-hover-shine,
  .comparison__relashanti .gsap-hover-shine {
    display: none;
  }

  .comparison__list-item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 9px 12px;
    margin: -9px -12px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition:
      background 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease,
      color 0.28s ease;
    line-height: 1.3;
  }

  .comparison__list-item > :not(.comparison-item-glow) {
    position: relative;
    z-index: 2;
  }

  .comparison-item-glow {
    position: absolute;
    inset: -34% -46%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-80%) skewX(-18deg);
    will-change: transform, opacity;
    background:
      radial-gradient(
        circle at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(255, 255, 255, 0.34),
        transparent 28%
      ),
      linear-gradient(
        110deg,
        transparent 0%,
        transparent 34%,
        rgba(255, 255, 255, 0.12) 42%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(53, 185, 199, 0.18) 57%,
        transparent 70%,
        transparent 100%
      );
    mix-blend-mode: screen;
  }

  .comparison__conventional .comparison-item-glow {
    background:
      radial-gradient(
        circle at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(53, 185, 199, 0.16),
        transparent 30%
      ),
      linear-gradient(
        110deg,
        transparent 0%,
        transparent 34%,
        rgba(53, 185, 199, 0.05) 42%,
        rgba(255, 255, 255, 0.84) 50%,
        rgba(53, 185, 199, 0.13) 58%,
        transparent 72%,
        transparent 100%
      );
    mix-blend-mode: normal;
  }

  .comparison__conventional .comparison__list-item:hover {
    background: rgba(159, 198, 207, 0.12);
    border-color: rgba(159, 198, 207, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 10px 28px rgba(4, 50, 82, 0.06);
  }

  .comparison__relashanti .comparison__list-item:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 30px rgba(0, 21, 42, 0.12);
  }

  .comparison__relashanti .comparison__list-item:hover i,
  .comparison__relashanti .comparison__list-item:hover svg {
    color: #6fe3ee;
    filter: drop-shadow(0 0 10px rgba(111, 227, 238, 0.36));
  }
}

/* ---------------------------------------------------------
   FAQ accordion premium
   --------------------------------------------------------- */
.faq__item {
  padding: 0;
  border: 1px solid rgba(159, 198, 207, 0.22);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.faq__item.is-open {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(53, 185, 199, 0.34);
  box-shadow: 0 24px 70px rgba(4, 50, 82, 0.10);
}

.faq__button {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 28px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq__question {
  display: block;
  color: var(--azul-profundo);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.faq__icon {
  position: relative;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(53, 185, 199, 0.14), rgba(17, 126, 184, 0.10));
  border: 1px solid rgba(53, 185, 199, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--azul-profundo);
  line-height: 1;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.faq__icon i {
  display: block;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
  transform: translateY(1px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.faq__icon-up {
  display: none !important;
}

.faq__item.is-open .faq__icon {
  background: linear-gradient(135deg, rgba(53, 185, 199, 0.18), rgba(17, 126, 184, 0.12));
  border-color: rgba(53, 185, 199, 0.42);
  color: var(--azul-profundo);
}

.faq__item.is-open .faq__icon-down {
  display: none !important;
}

.faq__item.is-open .faq__icon-up {
  display: block !important;
  transform: translateY(1px);
}

.faq__content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 28px;
}

.faq__item.is-open .faq__content {
  max-height: 260px;
  opacity: 1;
}

.faq__answer {
  color: var(--cinza-azulado);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 26px;
  margin: 0;
}

.faq__button:hover .faq__icon,
.faq__button:focus-visible .faq__icon {
  border-color: rgba(53, 185, 199, 0.52);
  box-shadow: 0 12px 28px rgba(17, 126, 184, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq__button:focus-visible {
  border-radius: 24px;
  box-shadow: inset 0 0 0 3px rgba(53, 185, 199, 0.22);
}

@media (max-width: 640px) {
  .faq__button {
    padding: 22px 20px;
    gap: 16px;
  }

  .faq__content {
    padding: 0 20px;
  }

  .faq__answer {
    padding-bottom: 22px;
  }

  .faq__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}

@media (max-width: 768px) {
  .cta-final-bg-video video {
    transform: scale(1.08);
  }

  .cta-final-bg-overlay {
    background:
      linear-gradient(180deg, rgba(3, 43, 79, 0.88) 0%, rgba(4, 55, 98, 0.82) 50%, rgba(3, 43, 79, 0.94) 100%),
      radial-gradient(circle at 50% 12%, rgba(53, 185, 199, 0.24), transparent 46%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-final-bg-video video {
    display: none;
  }
}

/* ---------------------------------------------------------
   FOOTER POLISH: background image, overlay and icon navigation
   --------------------------------------------------------- */
.footer {
  position: relative;
  overflow: hidden;
  background-color: #032f57;
  background-image: url('../img/footer-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 18%, rgba(28, 135, 204, 0.20), transparent 36%),
    linear-gradient(90deg, rgba(3, 47, 87, 0.78) 0%, rgba(3, 47, 87, 0.68) 46%, rgba(3, 47, 87, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 33, 62, 0.48) 0%, rgba(2, 33, 62, 0.78) 100%);
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer__grid {
  position: relative;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 6px 10px 6px 8px;
  margin-left: -8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.footer__link i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-agua);
  font-size: 14px;
  line-height: 1;
  border-radius: 50%;
  background: rgba(53, 185, 199, 0.10);
  border: 1px solid rgba(53, 185, 199, 0.16);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.footer__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  transform: translateX(4px);
}

.footer__link:hover i {
  color: #ffffff;
  background: rgba(53, 185, 199, 0.22);
  transform: scale(1.06);
}

.footer__contact-item {
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  margin-left: -12px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  margin-bottom: 0;
}

.footer__contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.footer__contact-item i,
.footer__contact-item svg {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(53, 185, 199, 0.10);
  border: 1px solid rgba(53, 185, 199, 0.16);
  color: var(--azul-agua);
  font-size: 15px;
}

.footer__social {
  margin-top: 18px;
}

.footer__social-link {
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  gap: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.10);
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.footer__social-link span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(53, 185, 199, 0.34);
  transform: translateY(-3px);
}

.footer .btn--sm {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.footer .btn--sm::after {
  content: '';
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: left 0.7s ease, opacity 0.25s ease;
}

.footer .btn--sm:hover::after {
  left: 120%;
  opacity: 1;
}

.footer__bottom {
  position: relative;
  border-top-color: rgba(255, 255, 255, 0.13);
}

.footer__bottom-link {
  position: relative;
}

.footer__bottom-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(53, 185, 199, 0.85);
  transition: width 0.28s ease;
}

.footer__bottom-link:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .footer__link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .footer {
    background-position: 58% center;
  }

  .footer::after {
    background:
      linear-gradient(180deg, rgba(3, 47, 87, 0.76) 0%, rgba(2, 33, 62, 0.84) 100%);
  }

  .footer__social-link {
    width: 100%;
    justify-content: center;
  }
}


/* ---------------------------------------------------------
   HEADER REFINADO: STICKY COMPACTO + LINK ATIVO POR SEÇÃO
   --------------------------------------------------------- */
.header {
  transition: height 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.header__inner,
.header__logo img,
.header__cta .btn,
.header__nav-link {
  transition: all 0.28s ease;
}

.header--scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.44);
  border-bottom-color: rgba(6, 56, 102, 0.10);
  box-shadow: 0 14px 38px rgba(3, 43, 79, 0.10);
}

.header--scrolled .header__logo img {
  max-height: 38px;
}

.header--scrolled .header__nav {
  gap: 18px;
}

.header--scrolled .header__nav-link {
  font-size: 13px;
  padding: 8px 12px;
}

.header--scrolled .header__cta .btn {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 13px;
}

.header__nav-link {
  padding: 8px 10px;
  border-radius: 999px;
  isolation: isolate;
}

.header__nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(13, 113, 201, 0.08);
  border: 1px solid rgba(13, 113, 201, 0.10);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.header__nav-link::after {
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #17b7c7, #0d71c9);
}

.header__nav-link:hover::before,
.header__nav-link.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  width: 18px;
}

.header__nav-link.is-active {
  color: var(--azul-institucional);
  font-weight: 800;
}

.mobile-menu__link.is-active {
  color: var(--azul-institucional);
  background: rgba(13, 113, 201, 0.08);
  border-color: rgba(13, 113, 201, 0.14);
}

@media (max-width: 1024px) {
  .header--scrolled {
    height: 64px;
  }

  .header--scrolled .header__logo img {
    max-height: 36px;
  }
}

/* ---------------------------------------------------------
   AJUSTE FINAL: HEADER COMPACTO + LOGO MOBILE
   --------------------------------------------------------- */
.header__nav-link::after,
.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.header__logo {
  display: inline-flex;
  align-items: center;
}

.header__logo-img--compact {
  display: none !important;
}

.header--scrolled .header__logo-img--default {
  display: none !important;
}

.header--scrolled .header__logo-img--compact {
  display: block !important;
  width: auto;
  max-height: 44px;
}

.header--scrolled .header__logo {
  min-width: 54px;
}

@media (max-width: 1024px) {
  .header--scrolled .header__logo-img--compact {
    max-height: 42px;
  }
}


@media (max-width: 480px) {
  .hero__price-label {
    gap: 7px;
  }

  .hero__price-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .hero__price-icon i {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
   Testimonials Carousel
   --------------------------------------------------------- */
.testimonials,
.testimonials .container,
.testimonials__carousel {
  overflow: visible;
}

.testimonials__carousel {
  position: relative;
  --testimonials-per-view: 3;
  --testimonials-gap: var(--space-4);
}

.testimonials__viewport {
  overflow: hidden;
  padding: 96px 72px 118px;
  margin: -96px -72px -118px;
}

.testimonials__track {
  display: flex;
  gap: var(--testimonials-gap);
  align-items: stretch;
  overflow: visible;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonials__track .testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonials-gap) * (var(--testimonials-per-view) - 1))) / var(--testimonials-per-view));
  min-width: 0;
  height: auto;
  display: flex;
  flex-direction: column;
}

.testimonials__track .testimonial-card__text {
  flex: 1;
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-5);
}

.testimonials__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 126, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--azul-profundo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(4, 50, 82, 0.1);
  transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.testimonials__arrow i {
  display: inline-flex;
  line-height: 1;
  font-size: 22px;
}

.testimonials__arrow:hover {
  transform: translateY(-3px);
  background: var(--azul-vivo);
  color: var(--azul-institucional);
  border-color: var(--azul-vivo);
  box-shadow: 0 20px 48px rgba(11, 90, 170, 0.2);
}

.testimonials__arrow:active {
  transform: translateY(-1px) scale(0.96);
}

@media (max-width: 1024px) {
  .testimonials__carousel {
    --testimonials-per-view: 2;
  }

  .testimonials__viewport {
    padding: 82px 44px 102px;
    margin: -82px -44px -102px;
  }
}

@media (max-width: 640px) {
  .testimonials__carousel {
    --testimonials-per-view: 1;
  }

  .testimonials__viewport {
    padding: 68px 24px 88px;
    margin: -68px -24px -88px;
  }

  .testimonials__controls {
    margin-top: var(--space-4);
  }

  .testimonials__arrow {
    width: 44px;
    height: 44px;
  }
}

/* ---------------------------------------------------------
   Testimonials Carousel Side Crop Fix
   Mantém respiro vertical para sombra e evita aparecer parte do próximo card.
   --------------------------------------------------------- */
.testimonials__carousel {
  overflow: visible;
}

.testimonials__viewport {
  overflow: hidden;
  padding: 96px 20px 118px;
  margin: -130px 0 -118px;
  box-sizing: border-box;
}

.testimonials__track {
  overflow: visible;
}

@media (max-width: 1024px) {
  .testimonials__viewport {
    padding: 82px 18px 102px;
    margin: -82px 0 -102px;
  }
}

@media (max-width: 640px) {
  .testimonials__viewport {
    padding: 68px 16px 88px;
    margin: -68px 0 -88px;
  }
}
.developedby {
  background: rgba(159, 198, 207, 0.18);
  border: 1px solid rgba(159, 198, 207, 0.25);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(159, 198, 207, 0.15);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
  .developedby:hover {
    background: rgba(159, 198, 207, 0);
    color:var(--azul-agua);
  }

/* ---------------------------------------------------------
   WordPress e Blog dinâmico
   --------------------------------------------------------- */
.blog-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(53, 185, 199, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(247, 250, 251, 0.98), rgba(234, 244, 248, 0.72));
}

.blog-preview__header {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: var(--space-5);
}

.blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(159, 198, 207, 0.28);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(3, 43, 79, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(53, 185, 199, 0.46);
  box-shadow: 0 30px 80px rgba(3, 43, 79, 0.18);
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  color: inherit;
}

.blog-card__image,
.blog-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image,
.blog-card:hover .blog-card__media img {
  transform: scale(1.07);
}

.blog-card__category {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--azul-profundo);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(3, 43, 79, 0.14);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.blog-card__title {
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--azul-profundo);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__excerpt {
  color: var(--cinza-azulado);
  font-size: 0.92rem;
  line-height: 1.58;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--azul-institucional);
  font-weight: 800;
  text-decoration: none;
}

.blog-card__link i {
  display: inline-flex;
  line-height: 1;
  transition: transform 0.25s ease;
}

.blog-card__link:hover i {
  transform: translateX(3px);
}

.blog-preview__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(159, 198, 207, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--azul-profundo);
  box-shadow: 0 18px 42px rgba(3, 43, 79, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.blog-preview__arrow:hover {
  background: var(--branco);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 22px 54px rgba(3, 43, 79, 0.18);
}

.blog-preview__arrow i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
}

.blog-preview__arrow--prev {
  left: 0;
}

.blog-preview__arrow--next {
  right: 0;
}

.blog-preview__footer {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.blog-preview__empty,
.relashanti-content-card {
  max-width: 720px;
  margin: var(--space-5) auto 0;
  padding: 34px;
  border: 1px solid rgba(159, 198, 207, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 20px 55px rgba(3, 43, 79, 0.10);
}

.blog-preview__empty i {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--azul-institucional);
  font-size: 2rem;
}

.blog-page,
.blog-archive,
.single-post-page,
.relashanti-page {
  padding-top: calc(var(--header-height) + var(--space-6));
  background:
    radial-gradient(circle at 12% 10%, rgba(53, 185, 199, 0.12), transparent 28%),
    var(--off-white);
}

.blog-archive__header {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.blog-page__hero {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.blog-page__hero h1 {
  color: var(--azul-profundo);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-page__hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--cinza-azulado);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.blog-page__list {
  margin-top: var(--space-5);
}

.blog-archive__grid,
.relashanti-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: var(--space-5);
}

.blog-preview__grid .blog-card,
.blog-archive__grid .blog-card,
.relashanti-page__grid .blog-card {
  flex-basis: auto;
}

.relashanti-pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

.relashanti-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.relashanti-pagination a,
.relashanti-pagination span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: var(--branco);
  color: var(--azul-profundo);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(3, 43, 79, 0.10);
}

.relashanti-pagination .current {
  background: var(--azul-institucional);
  color: var(--branco);
}

.single-post-page__container {
  max-width: 940px;
}

.single-post-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(159, 198, 207, 0.28);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 80px rgba(3, 43, 79, 0.14);
}

.single-post-card__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--azul-institucional);
  font-weight: 800;
  text-decoration: none;
}

.single-post-card__header {
  margin-bottom: 28px;
}

.single-post-card__header h1 {
  margin-top: 14px;
  color: var(--azul-profundo);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.single-post-card__meta {
  margin-top: 14px;
  color: var(--cinza-azulado);
  font-weight: 600;
}

.single-post-card__image {
  margin: 28px 0;
  overflow: hidden;
  border-radius: 28px;
}

.single-post-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post-card__content {
  color: var(--texto);
  font-size: 1.05rem;
  line-height: 1.85;
}

.single-post-card__content > * + * {
  margin-top: 1.1em;
}

.single-post-card__content h2,
.single-post-card__content h3 {
  color: var(--azul-profundo);
  line-height: 1.2;
  margin-top: 1.6em;
}

.single-post-card__content a {
  color: var(--azul-institucional);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .blog-preview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 980px) {
  .blog-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .blog-archive__grid,
  .relashanti-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-preview__grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    flex-basis: 100%;
  }

  .blog-preview__footer {
    margin-top: 34px;
  }

  .blog-archive__grid,
  .relashanti-page__grid {
    grid-template-columns: 1fr;
  }

  .single-post-card {
    border-radius: 26px;
  }
}

.single-post-card__category {
  position: static;
  width: fit-content;
}

/* Navegação entre posts */
.single-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.single-post-nav__card {
  position: relative;
  min-height: 142px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(159, 198, 207, 0.34);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--azul-profundo);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(3, 43, 79, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  overflow: hidden;
}

.single-post-nav__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(53, 185, 199, 0.14), transparent 36%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.single-post-nav__card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 185, 199, 0.52);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 68px rgba(3, 43, 79, 0.15);
}

.single-post-nav__card:hover::before {
  opacity: 1;
}

.single-post-nav__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--azul-institucional);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post-nav__card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--azul-profundo);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.28;
}

.single-post-nav__card--next {
  text-align: right;
  align-items: flex-end;
}

.single-post-nav__card--empty {
  visibility: hidden;
  pointer-events: none;
}

.single-post-page__blog-link {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.single-post-page__blog-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 760px) {
  .single-post-nav {
    grid-template-columns: 1fr;
  }

  .single-post-nav__card--next {
    text-align: left;
    align-items: flex-start;
  }

  .single-post-nav__card--empty {
    display: none;
  }
}
