/* =============================================
   INOVASITE – LANDING PAGE
   style.css
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #D42B2B;
  --primary-dark: #A81F1F;
  --primary-light: #F03535;
  --bg-red-start: #C42020;
  --bg-red-end: #6B0000;
  --accent: #E86C00;
  --yellow: #FFB800;
  --yellow-light: #FFD54F;
  --success: #2E9E59;

  --dark: #111111;
  --dark-2: #1C1C1C;
  --dark-3: #2B2B2B;
  --mid: #555555;
  --light: #F5F5F5;
  --lighter: #FAFAFA;
  --white: #FFFFFF;
  --border: #E0E0E0;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .16);
  --transition: .3s ease;
}

/* ---- Reset / Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  display: block;
  place-items: unset;
  min-height: unset;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

#app {
  display: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Utility ---- */
.text-center {
  text-align: center;
}

.text--accent {
  color: var(--accent);
}

.text--yellow {
  color: var(--yellow);
}

.section {
  padding: 80px 0;
}

/* ---- Section Labels & Titles ---- */
.section__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__label--light {
  color: var(--yellow);
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.section__title--light {
  color: var(--white);
}

.section__intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

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

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--cta {
  background: linear-gradient(135deg, var(--yellow), #FF9500);
  color: var(--dark);
}

.btn--cta:hover {
  filter: brightness(1.08);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  gap: 8px;
}

.header__nav-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--transition);
  opacity: .85;
}

.header__nav-link:hover {
  color: var(--yellow);
  opacity: 1;
}

.header__cta {
  font-size: .82rem;
  padding: 10px 20px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 960px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  }

  .header__nav.open .header__nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .header__nav.open .header__nav-link {
    padding: 12px 16px;
    opacity: 1;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-swiper {
  height: 100%;
}

.hero__slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .82) 0%, rgba(80, 0, 0, .65) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 80px;
}

.hero__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero__headline {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__price {
  color: var(--yellow);
  display: block;
}

.hero__asterisk {
  font-size: 60%;
  vertical-align: super;
}

.hero__highlight {
  color: var(--yellow);
}

.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, .88);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}

/* Swiper custom – Hero */
.hero-pagination {
  bottom: 32px !important;
}

.hero-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: .5;
  width: 10px;
  height: 10px;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.hero-btn-prev,
.hero-btn-next {
  color: var(--white) !important;
  background: rgba(0, 0, 0, .35) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  transition: background var(--transition);
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
  background: var(--primary) !important;
}

.hero-btn-prev::after,
.hero-btn-next::after {
  font-size: 16px !important;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, .6);
  font-size: 1.2rem;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: var(--white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .6s ease;
}

.sobre__image:hover img {
  transform: scale(1.04);
}

.sobre__badge-years {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.sobre__years-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.sobre__years-txt {
  font-size: .78rem;
  font-weight: 600;
  opacity: .9;
}

.sobre__content .section__title {
  margin-top: 8px;
}

.sobre__content p {
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sobre__tagline {
  font-size: 1.1rem;
  color: var(--dark) !important;
}

@media (max-width: 768px) {
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre__image img {
    height: 260px;
  }
}

/* ============================================
   PROBLEMA
   ============================================ */
.problema {
  background: var(--light);
}

.problema .section__intro {
  color: var(--mid);
}

.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
}

.problema__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 4px solid transparent;
}

.problema__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}

.problema__icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 43, 43, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
}

.problema__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problema__card p {
  color: var(--mid);
  font-size: .92rem;
}

.problema__conclusion {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 32px;
  font-size: 1rem;
}

.problema__conclusion i {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: var(--yellow);
}

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

@media (max-width: 768px) {
  .problema__grid {
    grid-template-columns: 1fr;
  }

  .problema__conclusion {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   SOLUÇÃO
   ============================================ */
.solucao {
  background: var(--dark);
}

.solucao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solucao__content p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 16px;
  line-height: 1.75;
}

.solucao__content p strong {
  color: var(--yellow);
}

.solucao__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.solucao__visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .solucao__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .solucao__visual {
    order: -1;
  }

  .solucao__visual img {
    height: 240px;
  }
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  background: var(--lighter);
}

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.servico__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.servico__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.servico__card--featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fff 70%, rgba(212, 43, 43, .04));
  padding-top: 56px;
}

.servico__card--featured:hover {
  border-color: var(--primary-dark);
}

.servico__featured-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  text-align: center;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
}

.servico__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.servico__icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 43, 43, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.servico__price-tag {
  text-align: right;
}

.servico__price-tag span {
  display: block;
  font-size: .72rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.servico__price-tag strong {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 700;
}

.servico__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.servico__desc {
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.65;
}

.servico__benefits {
  margin-bottom: 20px;
}

.servico__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .92rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.servico__benefits li:last-child {
  border-bottom: none;
}

.servico__benefits i {
  color: var(--success);
  margin-top: 2px;
  flex-shrink: 0;
}

.servico__diferencial {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: .88rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.servico__diferencial i {
  color: var(--accent);
  margin-right: 4px;
}

@media (max-width: 768px) {
  .servicos__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BENEFÍCIOS
   ============================================ */
.beneficios {
  background: var(--white);
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
}

.beneficio__item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: var(--lighter);
  border: 2px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.beneficio__item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.beneficio__icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.beneficio__item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.beneficio__item p {
  color: var(--mid);
  font-size: .88rem;
}

.beneficios__cta {
  text-align: center;
}

@media (max-width: 960px) {
  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .beneficios__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  background: var(--dark-2);
}

.diferenciais__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diferenciais__list {
  margin: 28px 0 24px;
}

.diferenciais__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .85);
  font-size: .96rem;
  line-height: 1.5;
}

.diferenciais__list li:last-child {
  border-bottom: none;
}

.diferenciais__list i {
  color: var(--yellow);
  margin-top: 2px;
  flex-shrink: 0;
}

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

.diferenciais__conclusion {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
  font-size: .95rem;
  line-height: 1.7;
}

.diferenciais__conclusion strong {
  color: var(--white);
}

.diferenciais__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.diferenciais__visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .diferenciais__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .diferenciais__visual {
    order: -1;
  }

  .diferenciais__visual img {
    height: 220px;
  }
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
  background: var(--lighter);
}

.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.timeline__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.timeline__step {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(212, 43, 43, .15);
  flex-shrink: 0;
}

.timeline__icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 43, 43, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 16px;
}

.timeline__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline__content p {
  color: var(--mid);
  font-size: .9rem;
}

.timeline__connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 26px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 20px;
    width: 100%;
  }

  .timeline__connector {
    width: 2px;
    height: 40px;
    margin: 0 0 0 25px;
  }

  .timeline__content {
    flex: 1;
  }
}

/* ============================================
   NÚMEROS
   ============================================ */
.numeros {}

.numeros .section__intro {
  color: rgba(255, 255, 255, .7);
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: center;
}

.numero__item {
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform var(--transition), background var(--transition);
}

.numero__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .1);
}

.numero__value {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.numero__suffix {
  font-size: 1.8rem;
}

.numero__icon {
  font-size: 2.4rem;
  color: var(--yellow);
}

.numero__item p {
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  line-height: 1.5;
}

.numero__big {
  font-size: .95rem !important;
  font-weight: 600;
}

@media (max-width: 960px) {
  .numeros__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .numeros__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {}

.depo-swiper {
  margin-top: 48px;
  padding-bottom: 56px !important;
}

.depo__slide {
  height: auto !important;
}

.depo__card {
  background: var(--lighter);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.depo__card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.depo__stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 16px;
}

.depo__stars i {
  margin-right: 2px;
}

.depo__card blockquote {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.depo__card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
  font-style: normal;
}

.depo__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depo__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary);
}

.depo__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depo__author strong {
  display: block;
  font-size: .95rem;
  color: var(--dark);
}

.depo__author span {
  font-size: .8rem;
  color: var(--mid);
}

.depo-pagination {
  bottom: 4px !important;
}

.depo-pagination .swiper-pagination-bullet {
  background: var(--primary);
}

.depo-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
}

/* ============================================
   PORTFÓLIO
   ============================================ */
.portfolio {}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.portfolio__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.portfolio__item:hover img {
  transform: scale(1.08);
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
}

.portfolio__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  width: fit-content;
  transition: filter var(--transition);
}

.portfolio__btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__overlay {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   OFERTA
   ============================================ */
.oferta {
  background: var(--dark);
}

/* .oferta__box styling is in the additions block below */
.oferta__tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.oferta__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.oferta__price {
  display: block;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin: 8px 0 4px;
}

.oferta__month {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
}

.oferta__conditions {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px auto;
  text-align: left;
}

.oferta__conditions li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
}

.oferta__conditions i {
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.oferta__obs {
  margin-top: 24px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FAQ
   ============================================ */
.faq {}

.faq__list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--transition);
  overflow: hidden;
}

.faq__item.open {
  border-color: var(--primary);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: color var(--transition);
}

.faq__item.open .faq__question {
  color: var(--primary);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq__item.open .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 16px 24px 20px;
  color: var(--mid);
  font-size: .93rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.formulario {
  background: var(--dark-2);
}

.formulario__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.formulario__info .section__title {
  margin-top: 8px;
}

.formulario__info p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 12px;
  line-height: 1.7;
}

.formulario__contacts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.formulario__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  transition: color var(--transition);
}

a.formulario__contact-item:hover {
  color: var(--yellow);
}

.formulario__contact-item i {
  color: var(--yellow);
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
}

.formulario__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}

.form__req {
  color: var(--primary);
}

.form__group input,
.form__group select {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--lighter);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 43, 43, .12);
  background: var(--white);
}

.form__group input.error,
.form__group select.error {
  border-color: var(--primary);
}

.form__group input::placeholder {
  color: #aaa;
}

.formulario__success {
  text-align: center;
  padding: 24px 16px;
}

.success__icon {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: 16px;
}

.formulario__success h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.formulario__success p {
  color: var(--mid);
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .formulario__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .form__row {
    grid-template-columns: 1fr;
  }

  .formulario__form-wrap {
    padding: 28px 20px;
  }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
}

.cta-final__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final__text {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.cta-final__phone {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  margin-bottom: 32px;
}

.cta-final__phone strong {
  color: var(--yellow);
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links ul,
.footer__services ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a,
.footer__services a {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__services a:hover {
  color: var(--yellow);
}

.footer__contact li {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

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

.footer__contact i {
  color: var(--accent);
  font-size: .95rem;
  width: 16px;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, .35);
  font-size: .8rem;
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 580px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .7);
  animation: none;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, .9);
  }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) !important;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.problema__grid .reveal:nth-child(2) {
  transition-delay: .1s;
}

.problema__grid .reveal:nth-child(3) {
  transition-delay: .2s;
}

.beneficios__grid .reveal:nth-child(2) {
  transition-delay: .1s;
}

.beneficios__grid .reveal:nth-child(3) {
  transition-delay: .2s;
}

.beneficios__grid .reveal:nth-child(4) {
  transition-delay: .3s;
}

.servicos__grid .reveal:nth-child(2) {
  transition-delay: .12s;
}

.portfolio__grid .reveal:nth-child(2) {
  transition-delay: .08s;
}

.portfolio__grid .reveal:nth-child(3) {
  transition-delay: .16s;
}

.portfolio__grid .reveal:nth-child(4) {
  transition-delay: .08s;
}

.portfolio__grid .reveal:nth-child(5) {
  transition-delay: .16s;
}

.portfolio__grid .reveal:nth-child(6) {
  transition-delay: .24s;
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero__content {
    padding-top: 72px;
  }

  .oferta__box {
    padding: 36px 20px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================
   ALTERNATING BACKGROUNDS
   ============================================ */
.bg--dark {
  background: var(--dark) !important;
}

.bg--red {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark)) !important;
}

/* Section labels / titles / intros on dark/red bg */
.section__intro--light {
  color: rgba(255, 255, 255, .8);
}

/* ============================================
   HERO – seal & content inner
   ============================================ */
.hero__content-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__text {
  flex: 1;
}

.hero__seal {
  flex-shrink: 0;
  width: 350px;
  animation: sealFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .5));
}

.hero__seal img {
  width: 100%;
  height: auto;
}

@keyframes sealFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@media (max-width: 768px) {
  .hero__content-inner {
    flex-direction: column;
    gap: 20px;
  }

  .hero__seal {
    width: 180px;
    order: -1;
  }
}

/* ============================================
   SERVIÇOS – new styles
   ============================================ */
.servico__incluso-title {
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: 10px;
  padding-top: 4px;
}

.servico__incluso-title i {
  color: var(--primary);
  margin-right: 6px;
}

.servico__icon--gold {
  background: linear-gradient(135deg, #FFB800, #FF9500) !important;
  color: var(--dark) !important;
}

.servico__benefits--featured li {
  border-bottom-color: rgba(212, 43, 43, .15);
  font-weight: 500;
}

.servico__benefits--featured i {
  color: var(--primary);
}

/* ============================================
   BENEFÍCIOS – dark variant on red bg
   ============================================ */
.beneficio__item--dark {
  background: rgba(0, 0, 0, .25);
  border-color: rgba(255, 255, 255, .15);
}

.beneficio__item--dark:hover {
  border-color: var(--yellow);
  background: rgba(0, 0, 0, .4);
}

.beneficio__item--dark h3 {
  color: var(--white);
}

.beneficio__item--dark p {
  color: rgba(255, 255, 255, .75);
}

/* ============================================
   TIMELINE – dark variant on red bg
   ============================================ */
.timeline__icon--dark {
  background: rgba(0, 0, 0, .3) !important;
  color: var(--yellow) !important;
}

.timeline__connector--dark {
  background: rgba(255, 255, 255, .3) !important;
}

.como-funciona .timeline__content h3 {
  color: var(--white);
}

.como-funciona .timeline__content p {
  color: rgba(255, 255, 255, .8);
}

/* ============================================
   OFERTA – side-by-side layout with seal
   ============================================ */
.oferta__box {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-3));
  border: 2px solid rgba(255, 184, 0, .25);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212, 43, 43, .25);
}

.oferta__box-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.oferta__box-content {
  flex: 1;
  padding: 52px 48px;
  text-align: center;
}

.oferta__seal {
  flex-shrink: 0;
  width: 450px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 100px;
}

.oferta__seal img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .5));
  animation: sealFloat 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .oferta__box-inner {
    flex-direction: column;
  }

  .oferta__seal {
    width: 200px;
    padding: 24px 24px 0;
    padding-bottom: 50px;
  }

  .oferta__box-content {
    padding: 36px 24px 40px;
  }
}

/* ============================================
   SOBRE – on red background (moved position)
   ============================================ */
.sobre--on-red p {
  color: rgba(255, 255, 255, .85) !important;
}

.sobre--on-red p strong {
  color: var(--yellow);
}

.sobre--on-red .sobre__tagline strong {
  color: var(--yellow);
}

.sobre--on-red .section__title {
  color: var(--white);
}