@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

:root {
  --primary-color: #ec6816;
  --secondary-color: #f58b49;
  --accent-color: #f58b49;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --border-radius: 5px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: "Google Sans", sans-serif;
  --font-secondary: "Google Sans", sans-serif;
}

* {
  font-family: var(--font-secondary);
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
}

.vip-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vip-topbar__container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 15px;
}

.vip-topbar__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.vip-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vip-topbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
}

.vip-topbar__btn:hover,
.vip-topbar__btn:focus {
  text-decoration: none;
}

.vip-topbar__btn-ico {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vip-topbar__btn-ico img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  transform: translateY(0.5px);
  image-rendering: -webkit-optimize-contrast;
}

.vip-topbar__btn--support {
  background: #0b3e4e;
  color: #fff;
}

.vip-topbar__btn--primary {
  background: #0b3e4e;
  color: #fff;
}

@media (max-width: 576px) {
  .vip-topbar__container {
    gap: 10px;
  }

  .vip-topbar__logo img {
    height: 38px;
  }

  .vip-topbar__actions {
    gap: 8px;
  }

  .vip-topbar__btn {
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .vip-topbar__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 15px 12px;
  }

  .vip-topbar__logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .vip-topbar__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary-color);
}

a:hover,
a:focus {
  color: #fff;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 20px auto;
  position: relative;
}

.divider span {
  position: absolute;
  width: 40px;
  height: 4px;
  background: var(--secondary-color);
  top: 0;
  left: 20px;
}

/* Intro alternativa (Na Humana Mind) */
.section-header.alt h2 {
  color: #2a2a2a;
  font-weight: 800;
}

.section-header.alt .subtitle,
.section-header .subtitle {
  margin-top: 8px;
  font-size: 20px;
  color: #9aa0a6;
  font-weight: 400;
}

.ornament {
  width: 72px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  border-radius: 999px;
  margin: 14px auto 28px;
}

.about-intro {
  max-width: 980px;
  margin: 0 auto 32px;
}

.about-intro .about-text {
  text-align: center;
  color: #8a8f94;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 14px;
}

.carousel-control .icon-prev::before,
.carousel-control .icon-next::before {
  content: "";
}

.carousel-control.right,
.carousel-control.left {
  background-image: none;
}
/* Hero Banner */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner .carousel-inner img {
  width: 100%;
  /* height: 650px; */
  object-fit: cover;
  /* filter: brightness(0.5); */
}

.hero-banner .carousel-caption {
  bottom: 30%;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.hero-banner .carousel-caption h2 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  color: #fff;
}

.hero-banner .carousel-caption p {
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

/* Galeria full-width (carrossel ocupa a seção inteira) */
.gallery-fullwidth {
  width: 100%;
}

.gallery-fullwidth .carousel,
.gallery-fullwidth .carousel-inner,
.gallery-fullwidth .item {
  width: 100%;
}

.gallery-fullwidth .carousel-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Seção de experiência (Mais de 20 anos) */
.experience-section {
  background: linear-gradient(135deg, #ec6816 0%, #ec6816 45%, #fbb45b 100%);
  color: #fff;
}

.experience-inner {
  padding: 60px 0 70px;
}

.experience-top {
  margin-bottom: 22px;
}

.experience-header {
  max-width: 900px;
  margin: 0;
}

.experience-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.experience-title-band {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 6px 18px 8px;
  padding-right: 0;
  background: #095d7a;
}

.experience-title-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100px;
  background: linear-gradient(90deg, #095d7a 0%, rgba(9, 93, 122, 0) 100%);
  pointer-events: none;
}

.experience-title-em {
  color: #fff;
}

.experience-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.experience-top-image img {
  width: 100%;
  height: auto;
  margin: 10px 0 0;
}

.experience-middle-text {
  margin-bottom: 30px;
}

.experience-middle-kicker {
  font-size: 20px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.95);
}

.experience-middle-main {
  font-size: 30px;
  font-weight: 700;
}

.experience-highlight {
  background: #095d7a;
  padding: 0 6px;
  border-radius: 2px;
}

.experience-bottom-image img {
  width: 100%;
  height: auto;
}

.experience-caption {
  font-size: 16px;
  margin-top: 12px;
}

@media (max-width: 767px) {
  .experience-inner {
    padding: 40px 0 50px;
  }

  .experience-top-image img {
    margin-top: 18px;
  }

  .experience-title {
    font-size: 30px;
  }

  .experience-middle-main {
    font-size: 22px;
  }
}

/* Seção 3 - O problema de empreender sozinho */
.problem-section {
  background: #0b3e4e;
  color: #fff;
}

.problem-inner {
  padding: 70px 0;
}

.problem-section .container {
  position: relative;
}

.problem-art {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 2.26 / 1;
  background: url("../images/sec3/sec3.png") center / contain no-repeat;
}

.problem-content {
  max-width: 920px;
  margin: -100px auto 0;
}

.problem-quote-row {
  margin-top: 0;
}

.problem-title {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.problem-title-light {
  display: block;
  font-size: 30px;
  font-weight: 400;
  opacity: 0.95;
}

.problem-title-strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
}

.problem-quote {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin: 10px 0 22px;
  text-transform: uppercase;
}

.problem-quote-em {
  background: #e86118;
  padding: 2px 8px;
}

.problem-quote-light {
  padding: 2px 8px;
}

.problem-list {
  margin-top: 12px;
}

.problem-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.25;
}

.problem-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.problem-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.problem-text strong {
  font-weight: 800;
}

@media (max-width: 991px) {
  .problem-title-strong {
    font-size: 38px;
  }

  .problem-quote {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .problem-inner {
    padding: 50px 0;
  }

  .problem-art {
    aspect-ratio: 1.5 / 1;
  }

  .problem-content {
    margin-top: -16px;
  }

  .problem-title-light {
    font-size: 24px;
  }

  .problem-title-strong {
    font-size: 32px;
  }
}

.model-section {
  background: #fff;
  color: #1f2a2e;
}

.model-inner {
  padding: 70px 0;
}

.model-row {
  align-items: flex-start;
}

.model-header {
  margin-bottom: 16px;
}

.model-title {
  margin: 0;
  line-height: 1;
}

.model-title-top {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: #0b3e4e;
}

.model-title-band {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: #e86118;
  color: #fff;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.model-hero {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 20px 0 10px;
}

.model-hero-photo {
  width: 60%;
  max-width: 280px;
  height: auto;
  /* border-radius: 14px; */
}

.model-hero-badge {
  width: 30%;
  max-width: 220px;
  height: auto;
}

.model-subtitle {
  margin: 16px 0 16px;
  font-size: 26px;
  color: #0b3e4e;
}

.model-checklist {
  margin-top: 10px;
}

.model-check {
  position: relative;
  padding-left: 64px;
  margin: 14px 0;
  font-size: 16px;
  line-height: 1.2;
  color: #0b3e4e;
}

.model-check::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: #e86118;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.model-map {
  text-align: right;
  padding-top: 20px;
}

.model-map img {
  width: 100%;
  /* max-width: 520px; */
  height: auto;
}

@media (max-width: 991px) {
  .model-title-top {
    font-size: 38px;
  }

  .model-title-band {
    font-size: 46px;
  }

  .model-map {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .model-inner {
    padding: 50px 0;
  }

  .model-title-top {
    font-size: 32px;
  }

  .model-title-band {
    font-size: 38px;
  }

  .model-hero {
    gap: 18px;
  }

  .model-hero-photo {
    width: 52%;
  }

  .model-hero-badge {
    width: 40%;
  }
}

/* Seção 5 - Por que embalagens? */
.packaging-section {
  color: #fff;
  background: url("../images/sec5-bg.png") center / cover no-repeat;
}

.packaging-inner {
  padding: 70px 0;
}

.packaging-row {
  align-items: center;
}

.packaging-card {
  max-width: 560px;
}

.packaging-title {
  margin: 0 0 22px;
  line-height: 1.05;
}

.packaging-title-top {
  display: inline-block;
  padding: 10px 16px;
  background: #0b3e4e;
  border-radius: 16px 0 16px 0;
  font-size: 42px;
  font-weight: 300;
}

.packaging-title-strong {
  font-weight: 900;
}

.packaging-title-main {
  display: block;
  margin-top: 12px;
  font-size: 58px;
  font-weight: 900;
}

.packaging-title-sub {
  display: block;
  margin-top: 2px;
  font-size: 34px;
  font-weight: 300;
  opacity: 0.95;
}

.packaging-list {
  margin-top: 18px;
}

.packaging-item {
  position: relative;
  padding-left: 62px;
  margin: 32px 0;
  font-size: 18px;
  line-height: 1.4;
}

.packaging-item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: #0b3e4e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6a245;
  font-weight: 900;
  font-size: 24px;
}

.packaging-media {
  text-align: right;
}

.packaging-media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: inline-block;
}

@media (max-width: 991px) {
  .packaging-title-top {
    font-size: 34px;
  }

  .packaging-title-main {
    font-size: 48px;
  }

  .packaging-title-sub {
    font-size: 28px;
  }

  .packaging-media {
    text-align: center;
    margin-top: 26px;
  }
}

@media (max-width: 767px) {
  .packaging-inner {
    padding: 50px 0;
  }

  .packaging-title-top {
    font-size: 28px;
  }

  .packaging-title-main {
    font-size: 40px;
  }

  .packaging-title-sub {
    font-size: 24px;
  }

  .packaging-item {
    font-size: 16px;
    padding-left: 56px;
  }
}

/* Ajustes visuais seção embalagens */
.packaging-title,
.packaging-title-top,
.packaging-title-main,
.packaging-title-sub,
.packaging-item {
  color: #fff;
}

/* Seção 6 - Diferenciais de uma grande rede */
.network-section {
  background: url("../images/sec6/sec6-bg.png") center / cover no-repeat;
  color: #fff;
}

.network-inner {
  padding: 70px 0 80px;
}

.network-header {
  text-align: center;
  margin-bottom: 26px;
}

.network-title {
  margin: 0;
  line-height: 1;
  color: #fff;
}

.network-title-band {
  display: inline-block;
  padding: 6px 16px 8px;
  background: #0b3e4e;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  border-radius: 12px 0 12px 0;
}

.network-title-rest {
  display: inline-block;
  margin-left: 10px;
  font-size: 30px;
  font-weight: 300;
  opacity: 0.95;
  color: #fff;
}

.network-title-big {
  display: block;
  margin-top: 6px;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
}

/* grid dos diferenciais (6 itens) */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 28px;
  align-items: start;
  margin: 26px auto 22px;
  max-width: 980px;
}

.network-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.network-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.network-text {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

.network-note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.2;
  opacity: 0.85;
}

/* arte central (sec6.png) */
.network-art {
  text-align: center;
  margin-top: 28px;
}

.network-art img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: inline-block;
}

/* Responsivo */
@media (max-width: 991px) {
  .network-title-band {
    font-size: 38px;
  }

  .network-title-rest {
    font-size: 26px;
  }

  .network-title-big {
    font-size: 56px;
  }

  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .network-inner {
    padding: 55px 0 65px;
  }

  .network-title-band {
    font-size: 32px;
  }

  .network-title-rest {
    font-size: 22px;
    margin-left: 8px;
  }

  .network-title-big {
    font-size: 44px;
  }

  .network-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .network-icon {
    width: 68px;
    height: 68px;
  }

  .network-text {
    font-size: 15px;
  }
}

/* Seção 7 - Você não empreende sozinho */
.support-section {
  background: #0b3e4e;
  color: #fff;
}

.support-inner {
  padding: 70px 0 80px;
}

.support-hero {
  max-width: 980px;
  margin: 0 auto 26px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.support-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Texto sobre a imagem (igual ao original) */
.support-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.support-hero-box {
  background: rgba(11, 62, 78, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0 0 14px 14px;
  padding: 22px 28px;
  text-align: center;
  max-width: 520px;
  backdrop-filter: blur(1px);
}

.support-hero-quote {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.5px;
}

.support-hero-main {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 1px;
}

/* Cards bicolor (ícone em box branco + faixa laranja) */
.support-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  display: flex;
  align-items: center;
  background: transparent;
  overflow: visible;
}

.support-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  margin: -6px 0;
}

.support-icon img {
  width: 30px;
  height: auto;
  display: block;
}

.support-text {
  min-height: 52px;
  background: #e86118;
  color: #fff;
  padding: 10px 14px 10px 16px;
  margin-left: -10px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 700;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  width: 100%;
}

/* Responsivo */
@media (max-width: 991px) {
  .support-inner {
    padding: 55px 0 65px;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-hero-quote {
    font-size: 34px;
  }

  .support-hero-main {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-hero-box {
    padding: 18px 18px;
  }

  .support-hero-quote {
    font-size: 28px;
  }

  .support-hero-main {
    font-size: 34px;
  }
}

/* Seção 8 - O que sustenta o crescimento */
.sustenta-section {
  background: #0b3e4e;
  color: #fff;
}

.sustenta-inner {
  padding: 0 0 85px;
}

.sustenta-header {
  text-align: center;
  margin-bottom: 26px;
}

.sustenta-title {
  margin: 0;
  line-height: 1.02;
  color: #fff;
}

.sustenta-title-top {
  display: block;
  font-size: 34px;
  font-weight: 300;
  opacity: 0.95;
}

.sustenta-title-main {
  display: block;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.sustenta-highlight {
  display: inline-block;
  padding: 0 10px 2px;
  background: #e86118;
  border-radius: 6px;
  line-height: 1;
}

.sustenta-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sustenta-card {
  overflow: visible;
}

.sustenta-photo {
  overflow: hidden;
  /* box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28); */
}

.sustenta-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.sustenta-pill {
  display: flex;
  align-items: center;
  margin-top: 10px;
  overflow: visible;
}

.sustenta-pill-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  margin: -6px 0;
}

.sustenta-pill-icon img {
  width: 34px;
  height: auto;
  display: block;
}

.sustenta-pill-text {
  min-height: 52px;
  width: 100%;
  background: #e86118;
  color: #fff;
  border-radius: 10px;
  margin-left: -10px;
  padding: 10px 14px 10px 16px;
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 700;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.sustenta-bottom {
  max-width: 1040px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: center;
}

.sustenta-bottom-card {
  overflow: visible;
}

.sustenta-bottom-copy {
  color: #fff;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.sustenta-bottom-copy strong {
  font-weight: 900;
}

.sustenta-bottom-line {
  margin: 0;
}

@media (max-width: 991px) {
  .sustenta-inner {
    padding: 55px 0 70px;
  }

  .sustenta-title-top {
    font-size: 28px;
  }

  .sustenta-title-main {
    font-size: 52px;
  }

  .sustenta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sustenta-bottom {
    grid-template-columns: 1fr;
  }

  .sustenta-bottom-copy {
    font-size: 38px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .sustenta-title-top {
    font-size: 24px;
  }

  .sustenta-title-main {
    font-size: 40px;
  }

  .sustenta-grid {
    grid-template-columns: 1fr;
  }

  .sustenta-bottom-copy {
    font-size: 30px;
  }
}

.testimonials-section {
  background: #fff;
  color: #1f2a2e;
}

.testimonials-inner {
  padding: 70px 0 80px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 26px;
}

.testimonials-title {
  margin: 0;
  line-height: 1;
}

.testimonials-title-line {
  display: block;
  margin: 0;
}

.testimonials-title-orange {
  color: #e86118;
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
}

.testimonials-title-chip {
  display: inline-block;
  background: #0b3e4e;
  color: #fff;
  padding: 6px 14px 8px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
}

.testimonials-grid {
  max-width: 1040px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  overflow: visible;
}

.testimonial-media {
  position: relative;
  /* border-radius: 18px; */
  overflow: hidden;
  /* box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18); */
}

.testimonial-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 16px 0;
}

.testimonial-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b3e4e;
  color: #fff;
  padding: 10px 12px 9px;
  border-radius: 16px 0;
}

.testimonial-name {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.05;
}

.testimonial-meta {
  margin-top: 2px;
  font-weight: 500;
  font-size: 12.5px;
  opacity: 0.9;
  line-height: 1.1;
}

.testimonial-quote {
  margin-top: 12px;
  color: #e86118;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.testimonials-cta {
  max-width: 1040px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonials-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  border: 0;
}

.testimonials-btn:visited,
.testimonials-btn:hover,
.testimonials-btn:focus,
.testimonials-btn:active {
  text-decoration: none;
  outline: none;
}

.testimonials-btn-primary {
  background: #e86118;
  color: #fff;
}

.testimonials-btn-secondary {
  background: #0b3e4e;
  color: #fff;
}

.testimonials-btn-icon {
  width: 22px;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .testimonials-title-orange,
  .testimonials-title-chip {
    font-size: 44px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .testimonials-inner {
    padding: 55px 0 65px;
  }

  .testimonials-title-orange,
  .testimonials-title-chip {
    font-size: 34px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.hero-banner .carousel-control {
  width: 5%;
  opacity: 0.8;
}

.hero-banner .carousel-indicators {
  bottom: 40px;
}

.hero-banner .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: 2px solid #fff;
  background-color: transparent;
}

.hero-banner .carousel-indicators .active {
  background-color: #fff;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.intro-section .lead {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

/* Faixa de destaques (+20 anos / A 1ª e maior / selo) */
.destaques-row {
  display: flex;
  align-items: center;
}

.destaques-item {
  position: relative;
  padding: 10px 25px;
  flex: 1 1 0;
}

@media (max-width: 767px) {
  .destaques-row {
    display: block;
  }
}

@media (min-width: 768px) {
  .destaques-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 3px;
    height: 110px;
    background: var(--primary-color);
    transform: translateY(-50%);
  }
}

.destaques-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.destaques-subtitle {
  font-size: 28px;
  line-height: 1.2;
  color: #2b4a5a;
  margin: 0;
}

.destaques-item img {
  height: 7rem;
  display: block;
  margin: 0 auto;
}

/* Category Cards */
.category-cards {
  margin-top: 50px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(176, 96, 16, 0.08) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 15px;
  opacity: 0;
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(176, 96, 16, 0.12);
}

.category-card:hover:before {
  opacity: 1;
}

.card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(176, 96, 16, 0.2);
}

.category-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--secondary-color);
}

.card-icon i {
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  transition: all 0.3s ease;
}

.category-card:hover .card-icon svg {
  transform: scale(1.1);
}

.card-body {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.category-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.category-card h4:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.4s ease;
}

.category-card:hover h4 {
  color: var(--secondary-color);
}

.category-card:hover h4:after {
  width: 50px;
}

.category-card p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-card {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.btn-card i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.category-card:hover .btn-card {
  color: var(--secondary-color);
}

.category-card:hover .btn-card i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .category-cards {
    margin-top: 30px;
  }

  .category-card {
    padding-top: 25px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }

  .card-icon i {
    font-size: 36px;
  }

  .card-icon svg {
    width: 36px;
    height: 36px;
  }

  .card-body {
    padding: 20px 15px;
  }

  .category-card h4 {
    font-size: 20px;
  }
}

/* event Section */
.event-section {
  position: relative;
  padding: 60px 0;
  color: #fff;
  background: #1f1f23 url("../images/banner2.jpg") center/cover no-repeat;
}
.event-section:before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
}
.event-section .container {
  position: relative;
  z-index: 1;
}

.event-gallery {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding: 30px;
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 96, 16, 0.2);
  transition: background 0.3s ease;
}

.gallery-item:hover .overlay {
  background: rgba(176, 96, 16, 0.1);
}

.item-1 {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-2deg);
}

.item-2 {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(2deg);
}

.item-3 {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(2deg);
}

.item-4 {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-2deg);
}

.event-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* Lista de eventos */
.event-list {
  margin-top: 20px;
}
.event-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.event-item + .event-item {
  margin-top: 14px;
}

a.event-item,
a.event-item:visited {
  color: inherit;
  text-decoration: none;
}

a.event-item:hover,
a.event-item:focus,
a.event-item:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.event-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-date {
  width: 74px;
  text-align: center;
  line-height: 1;
  font-weight: 800;
}
.event-date .day {
  font-size: 26px;
}
.event-date .month {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.event-date .year {
  font-size: 12px;
  opacity: 0.7;
}

.event-body {
  flex: 1 1 auto;
  min-width: 0;
}
.event-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--font-secondary);
}
.event-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-meta i {
  opacity: 0.9;
}

.event-divider {
  position: absolute;
  left: 180px;
  right: 16px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

/* Responsivo eventos */
@media (max-width: 767px) {
  .event-item {
    align-items: flex-start;
  }
  .event-date {
    width: 60px;
  }
  .event-divider {
    left: 140px;
  }
}

.content-wrapper {
  max-width: 500px;
}

.event-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.event-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fff;
}

.event-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary:hover:before {
  left: 0;
}

/* Responsive styles for event section */
@media (max-width: 991px) {
  .event-content {
    padding: 40px 20px;
  }

  .event-content h2 {
    font-size: 30px;
  }

  .event-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .event-gallery,
  .event-content {
    width: 100%;
  }

  .gallery-grid {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
  }

  .event-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-rows: 120px 120px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4 {
    transform: rotate(0);
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  padding-bottom: 0;
  background-color: #f8f9fa;
}

.cta-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cta-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card-content p {
  color: #666;
  margin-bottom: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: #fff;
  text-decoration: none;
}

.btn-outline:hover:before {
  width: 100%;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.client-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-placeholder {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.client-details {
  color: #fff;
}

.client-details h5 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #fff;
}

.client-details span {
  font-size: 14px;
  opacity: 0.8;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.carousel-controls .carousel-control {
  background: none;
  opacity: 1;
  width: auto;
  text-shadow: none;
}

.carousel-controls .carousel-control i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-controls .carousel-control:hover i {
  background: var(--secondary-color);
}

.carousel-controls .left i {
  left: -20px;
}

.carousel-controls .right i {
  right: -20px;
}

@media (max-width: 767px) {
  .testimonial-content p {
    font-size: 16px;
  }

  .carousel-controls .left i {
    left: 0;
  }

  .carousel-controls .right i {
    right: 0;
  }
}

@media (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    border-radius: 10px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-banner .carousel-inner img {
    height: 550px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 42px;
  }

  .hero-banner .carousel-caption p {
    font-size: 20px;
  }

  .hex {
    width: 180px;
    height: 156px;
  }
}

@media (max-width: 991px) {
  .hero-banner .carousel-inner img {
    height: 450px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 36px;
  }

  .hero-banner .carousel-caption p {
    font-size: 18px;
  }

  .event-content {
    padding: 40px 20px;
  }

  .hex {
    width: 150px;
    height: 130px;
  }
}

@media (max-width: 767px) {
  .hero-banner .carousel-inner img {
    height: 350px;
  }

  .hero-banner .carousel-caption {
    bottom: 20%;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 30px;
  }

  .hero-banner .carousel-caption p {
    font-size: 16px;
  }

  .intro-section,
  .cta-section,
  .testimonial-section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .event-gallery,
  .event-content {
    width: 100%;
  }

  .hex-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-banner .carousel-inner img {
    height: 300px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 24px;
  }

  .hero-banner .carousel-caption p {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .testimonial p {
    font-size: 16px;
  }
}

/* Footer Moderno */
.modern-footer {
  font-family: var(--font-primary);
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px;
  text-align: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-card a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-color);
}

.card-content {
  width: 100%;
}

.card-content p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.card-content p i {
  margin-right: 8px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.card-content p span {
  flex: 1;
  min-width: 0;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  align-items: flex-start;
  width: 100%;
}

.hours-day,
.hours-time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
  width: 100%;
}

.hours-day {
  font-weight: 600;
  color: #333;
}

.hours-day i,
.hours-time i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hours-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hours-note i {
  font-size: 10px;
  color: var(--primary-color);
  margin-right: 5px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-widget h4 {
    font-size: 18px;
  }

  .footer-menu li {
    font-size: 14px;
  }
}

/* Footer Embalagio */
.emb-footer {
  width: 100%;
}

/* Header Embalagio */
.emb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 25, 35, 0.08);
}

.emb-header__container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.emb-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.emb-header__logo img {
  width: 160px;
  height: auto;
  display: block;
}

.emb-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 25, 35, 0.15);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.emb-header__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #0b2c3a;
  border-radius: 2px;
}

.emb-header__toggle-line + .emb-header__toggle-line {
  margin-top: 6px;
}

.emb-header__nav {
  flex: 1 1 auto;
}

.emb-header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.emb-header__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.emb-header__links a {
  color: rgba(10, 25, 35, 0.78);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 6px;
  letter-spacing: 0.2px;
}

.emb-header__links a:hover {
  color: #0b2c3a;
  text-decoration: none;
}

.emb-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emb-header__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(10, 25, 35, 0.78);
}

.emb-header__icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(10, 25, 35, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(10, 25, 35, 0.78);
  text-decoration: none;
}

.emb-header__icon-btn:hover {
  color: #0b2c3a;
  text-decoration: none;
}

.emb-header__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.emb-header__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.emb-header__icon svg path {
  fill: currentColor;
}

.emb-header__icon svg[fill="none"] path {
  fill: none;
  stroke: currentColor;
}

.emb-header__phone {
  font-weight: 800;
  color: rgba(10, 25, 35, 0.86);
  text-decoration: none;
  white-space: nowrap;
}

.emb-header__phone:hover {
  color: #0b2c3a;
  text-decoration: none;
}

.emb-header__cta {
  background: #e86118;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.emb-header__cta:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.04);
}

@media (max-width: 991px) {
  .emb-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .emb-header__nav {
    flex: 0 0 auto;
  }

  .emb-header__nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 6px;
  }

  .emb-header__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .emb-header__links a {
    padding: 10px 0;
    width: 100%;
  }

  .emb-header__actions {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0 0;
    border-top: 1px solid rgba(10, 25, 35, 0.08);
  }
}

.emb-footer__top {
  background: #0b3e4e;
  color: #fff;
}

.emb-footer__top-container {
  padding: 50px 15px 40px;
}

.emb-footer__header {
  text-align: center;
  margin-bottom: 26px;
}

.emb-footer__title {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
}

.emb-footer__subtitle {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.2;
  opacity: 0.9;
  font-weight: 300;
}

.emb-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 26px;
  align-items: start;
}

.emb-footer__form {
  margin: 0;
}

.emb-footer__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.emb-footer__field {
  width: 100%;
  height: 38px;
  padding: 10px 12px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  outline: none;
}

.emb-footer__field::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.emb-footer__field--textarea {
  grid-column: 1 / -1;
  height: 84px;
  resize: none;
  padding-top: 10px;
}

.emb-footer__field-row {
  width: 100%;
}

.emb-footer__field-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.emb-footer__submit {
  margin-top: 14px;
  background: #e86118;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
}

.emb-footer__info-col {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.emb-footer__info {
  flex: 1 1 auto;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.emb-footer__block-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.emb-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  line-height: 1.25;
  opacity: 0.95;
}

.emb-footer__contact-item--address {
  display: block;
  margin-top: 6px;
  opacity: 0.9;
}

.emb-footer__contact-ico {
  width: 18px;
  display: inline-flex;
  justify-content: center;
  opacity: 0.95;
}

.emb-footer__link {
  display: block;
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}

.emb-footer__link:hover {
  opacity: 1;
  text-decoration: none;
}

.emb-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.emb-footer__social-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.emb-footer__social-ico svg {
  width: 18px;
  height: 18px;
  display: block;
}

.emb-footer__social-ico svg path {
  fill: currentColor;
}

.emb-footer__social-ico:hover {
  background: rgba(232, 97, 24, 0.16);
  border-color: rgba(232, 97, 24, 0.85);
  color: #fff;
  transform: translateY(-1px);
}

.emb-footer__social-ico:focus-visible {
  outline: 2px solid rgba(232, 97, 24, 0.9);
  outline-offset: 2px;
}

.emb-footer__art img {
  width: 100%;
  height: auto;
  display: block;
}

.emb-footer__brand {
  background: #e86118;
}

.emb-footer__brand-container {
  padding: 26px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emb-footer__logo {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}

.emb-footer__bottom {
  background: #fff;
  color: #0b3e4e;
}

.emb-footer__bottom-container {
  padding: 14px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.emb-footer__copy {
  font-size: 13px;
  opacity: 0.9;
}

.emb-footer__dev {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.9;
}

.emb-footer__lecamp {
  height: 22px;
  width: auto;
  display: block;
}

@media (max-width: 991px) {
  .emb-footer__grid {
    grid-template-columns: 1fr;
  }

  .emb-footer__info-col {
    flex-direction: column;
  }

  .emb-footer__title {
    font-size: 32px;
  }

  .emb-footer__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .emb-footer__form-grid {
    grid-template-columns: 1fr;
  }

  .emb-footer__field-row--split {
    grid-template-columns: 1fr;
  }

  .emb-footer__title {
    font-size: 28px;
  }
}

.vip-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.vip-hero__media {
  position: relative;
}

.vip-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.vip-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 78px;
}

.vip-hero__overlay .container {
  width: 100%;
}

.vip-hero__grid {
  padding: 64px 0 46px;
}

.vip-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 620px) 1fr;
  align-items: start;
}

.vip-hero__left {
  max-width: 620px;
  padding-left: 26px;
}

.vip-hero__kicker {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.8px;
  font-size: 34px;
  line-height: 1;
  margin: 6px 0 10px;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.vip-hero__title {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.vip-hero__title-line {
  display: block;
  color: #ffffff;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 98px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.vip-hero__title-line--vip {
  font-size: 120px;
}

.vip-hero__tagline {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.vip-hero__cta-wrap {
  display: flex;
  justify-content: center;
}

.vip-hero__bar {
  background: #fff;
  padding: 18px 0 22px;
  margin-top: 6px;
}

.vip-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e86118;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.vip-hero__cta:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.vip-hero__cta-ico {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.9;
}

.vip-section {
  padding: 48px 0;
}

.vip-cashback {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.vip-cashback__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/landing-page/sec2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.vip-cashback__content {
  position: relative;
  z-index: 1;
  padding: 64px 0 54px;
}

.vip-cashback__content .container {
  max-width: 1100px;
}

.vip-cashback__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.vip-cashback__left {
  padding-left: 0;
  text-transform: uppercase;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vip-cashback__small {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.95);
}

.vip-cashback__price {
  font-size: 74px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin: 8px 0 6px;
  color: #fff;
}

.vip-cashback__earn {
  font-size: 82px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.6px;
  margin-top: 10px;
  color: #e86118;
}

.vip-cashback__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.vip-cashback__pill-pre {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.vip-cashback__pill-main {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #e86118;
}

.vip-cashback__pill-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.vip-cashback__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-right: 0;
}

.vip-cashback__right .vip-cashback__pill {
  margin-top: 12px;
  justify-content: flex-start;
}

.vip-cashback__percent {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 190px;
  line-height: 0.9;
  letter-spacing: -6px;
  color: rgba(255, 255, 255, 0.97);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.vip-cashback__bottom {
  margin-top: 30px;
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.vip-cashback__more {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #e86118;
  text-transform: lowercase;
}

.vip-cashback__benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  column-gap: 26px;
  row-gap: 14px;
}

.vip-cashback__benefit {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.95);
}

.vip-cashback__divider {
  width: 2px;
  height: 72px;
  background: #e86118;
  opacity: 0.95;
}

.vip-steps {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.vip-steps__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/landing-page/sec3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vip-steps__content {
  position: relative;
  z-index: 1;
  padding: 62px 0 0;
}

.vip-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.vip-steps__col {
  max-width: 340px;
}

.vip-steps__badge {
  width: 96px;
  border-radius: 12px;
  padding: 10px 12px;
  background: #e86118;
  color: #fff;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.vip-steps__badge-top {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 1;
}

.vip-steps__badge-num {
  font-weight: 900;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-top: 6px;
}

.vip-steps__title {
  margin-top: 14px;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.05;
  color: #0b3e4e;
}

.vip-steps__text {
  margin-top: 6px;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.15;
  color: rgba(11, 62, 78, 0.8);
}

.vip-steps__products {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-top: 18px;
  transform: translateY(10px);
  pointer-events: none;
}

@media (max-width: 991px) {
  .vip-steps__content {
    padding: 52px 0 60px;
  }

  .vip-steps__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vip-steps__col {
    max-width: none;
  }

  .vip-steps__products {
    display: none;
  }
}

@media (max-width: 991px) {
  .vip-cashback__content {
    padding: 54px 0 46px;
  }

  .vip-cashback__top {
    grid-template-columns: 1fr;
  }

  .vip-cashback__right {
    align-items: flex-start;
    padding-left: 0;
  }

  .vip-cashback__percent {
    font-size: 150px;
  }

  .vip-cashback__price {
    font-size: 64px;
  }

  .vip-cashback__earn {
    font-size: 72px;
  }

  .vip-cashback__benefit {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .vip-cashback__content {
    padding: 44px 0 40px;
  }

  .vip-cashback__top {
    gap: 14px;
  }

  .vip-cashback__left,
  .vip-cashback__right {
    background: rgba(11, 62, 78, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 16px 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .vip-cashback__left {
    padding-left: 6px;
    padding-left: 14px;
    text-align: center;
  }

  .vip-cashback__small {
    font-size: 20px;
    letter-spacing: 0.4px;
  }

  .vip-cashback__price {
    font-size: 48px;
    margin-top: 2px;
  }

  .vip-cashback__earn {
    font-size: 52px;
    margin-top: 6px;
  }

  .vip-cashback__right {
    align-items: center;
  }

  .vip-cashback__right .vip-cashback__pill {
    justify-content: center;
    text-align: center;
  }

  .vip-cashback__pill {
    padding: 10px 14px;
    border-radius: 16px;
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .vip-cashback__pill-main {
    font-size: 26px;
  }

  .vip-cashback__percent {
    font-size: 120px;
    letter-spacing: -4px;
    line-height: 0.9;
    margin: 4px 0 6px;
  }

  .vip-cashback__more {
    font-size: 32px;
  }

  .vip-cashback__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .vip-cashback__divider {
    display: none;
  }

  .vip-cashback__benefit {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 14px;
    line-height: 1.25;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 991px) {
  .vip-hero__grid {
    padding: 46px 0 40px;
  }

  .vip-hero__grid {
    grid-template-columns: 1fr;
  }

  .vip-hero__title-line {
    font-size: 76px;
  }

  .vip-hero__title-line--vip {
    font-size: 92px;
  }

  .vip-hero__kicker {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .vip-hero__overlay {
    padding-top: 0;
  }

  .vip-hero__img {
    height: 420px;
    object-fit: cover;
    object-position: center right;
  }

  .vip-hero__grid {
    padding: 22px 0 18px;
  }

  .vip-hero__left {
    padding-left: 6px;
  }

  .vip-hero__kicker {
    font-size: 20px;
    margin: 4px 0 8px;
  }

  .vip-hero__title-line {
    font-size: 50px;
    line-height: 0.95;
  }

  .vip-hero__title-line--vip {
    font-size: 60px;
  }

  .vip-hero__tagline {
    font-size: 13px;
    padding: 8px 12px;
  }

  .vip-hero__bar {
    padding: 12px 0 14px;
    margin-top: 10px;
  }

  .vip-hero__cta {
    padding: 11px 14px;
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 576px) {
  .vip-hero__title-line {
    font-size: 44px;
  }

  .vip-hero__title-line--vip {
    font-size: 52px;
  }

  .vip-hero__tagline {
    font-size: 12px;
    padding: 7px 10px;
  }

  .vip-hero__cta {
    width: 100%;
    justify-content: center;
  }
}

.vip-signup {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.vip-signup__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/landing-page/sec4-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vip-signup__content {
  position: relative;
  z-index: 1;
  padding: 64px 0 70px;
}

.vip-signup__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.vip-signup__title {
  margin: 0 0 26px;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.8px;
  color: #fff;
  text-transform: none;
}

.vip-signup__title strong {
  font-weight: 900;
}

.vip-signup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  max-width: 760px;
}

.vip-signup__field {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  outline: none;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.vip-signup__field::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.vip-signup__right {
  display: flex;
  justify-content: flex-end;
}

.vip-signup__voucher {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .vip-signup__grid {
    grid-template-columns: 1fr;
  }

  .vip-signup__right {
    justify-content: center;
    margin-top: 18px;
  }

  .vip-signup__title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .vip-signup__content {
    padding: 46px 0 56px;
  }

  .vip-signup__title {
    font-size: 36px;
  }

  .vip-signup__fields {
    grid-template-columns: 1fr;
  }
}
