.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 54, 109, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.site-header__logo img {
  width: 174px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button--primary,
.nav-cta {
  background: var(--amarelo-tangerina);
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(255, 206, 0, 0.24);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.info-card {
  min-height: 250px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.segment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: inherit;
}

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

.segment-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 54, 109, 0.2);
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  background: var(--azul-bizantino);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
  font-size: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--azul-polinesio-dark-20);
  font-size: 1.35rem;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

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

.feature-item strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.05rem;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--azul-polinesio-dark-20);
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(13, 23, 48, 0.18);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--color-text);
}

.site-footer {
  padding: 34px 0;
  background: var(--azul-polinesio-dark-20);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer img {
  width: 190px;
}

.site-footer img.logo-integrado {
  width: 152px;
}
