/* ===========================
   DominaFood 
   =========================== */

:root {
  --verde: #006572;
  --laranja: #F57C00;
  --amarelo: #FEBD33;
  --neutro: #EFECE8;
  --bg: #FFFFFF;

  --fw-sans: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --fw-display: "Oswald", "Drakune", sans-serif;
  --fw-secondary: "Arsenal SC", serif;

  --radius: 14px;
  --smooth: cubic-bezier(.2, .9, .3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--fw-sans);
  background: var(--neutro);
  color: var(--verde);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADER
   =========================== */

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1200;
  width: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 70px;
  transition: transform 0.3s var(--smooth);
}

.brand-logo:hover {
  transform: scale(1.05);
}

/* ===========================
   NAV
   =========================== */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

.nav-list a {
  font-family: var(--fw-secondary);
  font-weight: 600;
  color: var(--verde);
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--laranja), var(--amarelo));
  border-radius: 3px;
  transition: width 0.3s var(--smooth);
}

.nav-list a:hover::after {
  width: 100%;
}

.menumobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.menumobile span {
  width: 100%;
  height: 3px;
  background: var(--verde);
  border-radius: 3px;
}

@media (max-width: 992px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-list {
    flex-direction: column;
    gap: 1.2rem;
  }

  .menumobile {
    display: flex;
  }

  .nav.active {
    display: flex;
  }
}

#sobre {
  scroll-margin-top: 100px;
}

/* ===========================
   Botões
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s var(--smooth);
}

.btn-primary {
  background: var(--laranja);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
  background: var(--verde);
}

.btn-outline {
  border: 2px solid var(--verde);
  color: var(--verde);
  background: transparent;
}

.btn-outline:hover {
  background: var(--verde);
  color: #fff;
}

.btn-ghost {
  border: 2px dashed var(--verde);
  color: var(--bg);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--verde);
  color: #fff;
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ===========================
   HERO 
=========================== */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero video.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.display-heading {
  font-family: var(--fw-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.3s;
}

.display-heading .accent {
  color: var(--verde);
}

.display-heading .highlight {
  color: var(--laranja);
}

.lead {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.5s;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.7s;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.9s;
}

.features i {
  color: var(--laranja);
  margin-right: 6px;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero:hover video.bg-video {
  transform: scale(1.05);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .hero {
    padding: 6rem 1rem 4rem;
  }

  .hero-grid {
    padding: 0 1rem;
  }

  .display-heading {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.8rem;
  }
}
/* ===========================
   SOBRE
=========================== */
.sectionabout h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--verde); 
  margin-bottom: 1rem;
  font-family: var(--fw-display);
}

.about-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s var(--smooth);
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card h3 {
  font-family: var(--fw-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--verde);

}

.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.about-connector {
  width: 200px;
  display: flex;
  align-items: center;
}

.about-connector svg {
  width: 100%;
  height: 100%;
}

.circuit-dot {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));
}

.circuit-dot.verde {
  fill: var(--verde);
}

.circuit-dot.laranja {
  fill: var(--laranja);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-connector {
    display: none;
  }

  .about-card {
    min-height: auto;
  }
}


.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.2s ease;
}
.video-modal-content {
  width: 100%;
  max-width: 900px;
  transition: all 0.3s ease;
}
.video-modal video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  color: black;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--laranja);
}

.btn-marketing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--laranja), var(--amarelo));
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--smooth);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.3);
}

.btn-marketing:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 124, 0, 0.4);
  background: linear-gradient(90deg, var(--verde));
}

.btn-marketing::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s var(--smooth);
}

.btn-marketing:hover::after {
  left: 100%;
}


/* ===========================
   AI BOTOES
=========================== */
.ai-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.ai-actions .btn {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s var(--smooth), transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.ai-actions .btn:active {
  transform: scale(0.95);
}

.ai-actions .btn-primary {
  background: var(--laranja);
  color: #fff;
  border: none;
}

.ai-actions .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: left 0.4s var(--smooth);
}

.ai-actions .btn-primary:hover::after {
  left: 100%;
}

.ai-actions .btn-primary:hover {
  background: var(--verde);
  transform: translateY(-2px);
}

.ai-actions .btn-outline {
  border: 1.5px solid var(--verde);
  color: var(--verde);
  background: transparent;
}

.ai-actions .btn-outline::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--verde);
  z-index: -1;
  transition: width 0.3s var(--smooth);
}

.ai-actions .btn-outline:hover::before {
  width: 100%;
}

.ai-actions .btn-outline:hover {
  color: #fff;
  transform: translateY(-2px);
}

.photo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--verde);
  margin: 0 auto 1.2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-circle:hover {
  transform: scale(1.05);
  border-color: var(--laranja);
}

.btn-marketing-dom-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-marketing-dom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--laranja), var(--amarelo));
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--smooth);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.3);
}

.btn-marketing-dom:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 124, 0, 0.4);
  background: linear-gradient(90deg, var(--verde));
}

.btn-marketing-dom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s var(--smooth);
}

.btn-marketing-dom:hover::after {
  left: 100%;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .ai-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .photo-circle {
    width: 100px;
    height: 100px;
  }
}

/* ===========================
   FUNCIONALIDADES
=========================== */
.featuresgeral {
  padding: 2rem 1.5rem;
  background: var(--verde);
  color: var(--bg);
}

.featuresgeral h2 {
  border-bottom: 3px solid var(--laranja);
  padding-bottom: 4px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 1rem;
  font-family: var(--fw-display);
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg);
  color: var(--verde);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s var(--smooth);
  border: 2px solid var(--laranja);
}

.feature-card.revealed {
  transform: translateY(0);
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2rem;
  color: var(--laranja);
  margin-bottom: 1rem;
}

.botao-wrapper-2 {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-marketing-2 {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--smooth);
  background: linear-gradient(90deg, var(--laranja), var(--amarelo));
}

.btn-marketing-2:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(90deg, var(--bg));
  color:var(--laranja)
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .features-grid {
    gap: 1.5rem;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }
}



/* ===========================
   Pratica Dom
=========================== */

.dom-phone-section {
  padding: 20px 0;
  background: var(--bg);
}

.dom-intro-simple {
  padding: 2rem 1.5rem;
  color: var(--verde);
}

.dom-intro-simple h2 {
  border-bottom: 3px solid var(--laranja);
  padding-bottom: 4px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 1rem;
  font-family: var(--fw-display);
}


.dom-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
}

.dom-phone-row.reverse {
  flex-direction: row-reverse;
}

.phone-mockup.small {
  flex: 0 0 260px;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #000;
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}


.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  transition: transform 0.5s ease;
}


.phone-frame:hover .phone-screen {
  transform: scale(1.06);
}

.phone-card {
  background: var(--verde);
  color: var(--bg);
  padding: 42px;
  border-radius: 26px;
  max-width: 500px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.phone-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--laranja);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(245,124,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--laranja);
}

.phone-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.phone-card ul {
  list-style: none;
  padding: 0;
}

.phone-card li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}


@media (max-width: 900px) {

  .dom-phone-row,
  .dom-phone-row.reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
  }

  .dom-intro-simple {
    margin-bottom: 60px;
  }

  .dom-intro-simple h2 {
    font-size: 2.2rem;
  }

  .phone-card {
    padding: 32px;
    max-width: 100%;
  }

  .phone-card-title {
    justify-content: center;
  }

}

/* =========================
   CARD HOVER
========================= */

.phone-card {
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.45s var(--smooth),
    transform 0.45s var(--smooth),
    box-shadow 0.45s var(--smooth);
}

/* LINHA LATERAL */
.phone-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: var(--laranja);
  transition: height 0.45s var(--smooth);
}

/* HOVER */
.phone-card:hover {
  background: var(--neutro);
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.28);
}

.phone-card:hover::before {
  height: 100%;
}

/* TEXTO */
.phone-card:hover p,
.phone-card:hover li {
  color: var(--verde);
}

/* TÍTULO */
.phone-card:hover .phone-card-title {
  color: var(--verde);
}

/* ÍCONE */
.phone-card:hover .icon-wrap {
  background: rgba(0,101,114,0.15);
}

.phone-card:hover .icon-wrap svg {
  color: var(--verde);
}


/* ===========================
   PACOTES
=========================== */
.pacotes {
  --card-radius: 18px;
  background: var(--bg);
  padding: 4rem 1.5rem;
  color: var(--verde);
  text-align: center;
  font-family: var(--fw-sans);
}

.motivation-banner {
  width: 100%;
  background: var(--verde);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.motivation-icon {
  font-size: 3.2rem;
  color: var(--laranja);
  padding: 1rem;
  border-radius: 999px;
}

.motivation {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  max-width: 900px;
  line-height: 1.3;
}

.motivation .highlight {
  color: var(--laranja);
}

.author {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

.pacotes .unico-pacote {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pacotes .pacote-card {
  border-radius: var(--card-radius);
  padding: 4px;
  background: linear-gradient(90deg, var(--verde) 0 50%, var(--laranja) 50% 100%);
  display: inline-block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease;
}

.pacotes .pacote-inner {
  background: var(--bg);
  border-radius: calc(var(--card-radius) - 4px);
  padding: 3rem 3rem 3.5rem;
  max-width: 980px;
  box-sizing: border-box;
}

.pacotes .pacote-logo img {
  width: 130px;
  display: block;
  margin: 0 auto 1.2rem;
}

.pacotes .section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  color: var(--verde);
}

.pacotes .section-title .highlight {
  color: var(--laranja);
}



.pacotes .pacote-title {
  margin: 1.5rem 0 1.8rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--laranja);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pacotes .planos-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.planos-container .price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0.8rem 0 1.2rem;
  position: relative;
}

.planos-container .old-price {
  font-size: 1.1rem;
  color: rgba(245, 124, 0, 0.85); 
  text-decoration: line-through;
  text-decoration-thickness: 2px; 
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.5px;
  position: relative;
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.4s ease;
}

.planos-container .old-price::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  transform: translateY(3px);
  opacity: 0.3;
}

.planos-container .new-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--laranja);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: pulsePrice 2.2s infinite ease-in-out;
  transition: transform 0.4s ease, color 0.4s ease;
}

.planos-container .new-price::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

.plano:hover .old-price {
  color: var(--verde);
  opacity: 1;
  transform: translateY(-3px);
}
.plano:hover .new-price {
  transform: scale(1.08);
  color: var(--verde);
}

@keyframes shine {
  0% {
    left: -60%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.oferta-topo {
  text-align: center;
  padding-bottom: 2rem;
  color: var(--verde);
}

.oferta-titulo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--laranja);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.countdown div {
  background: var(--verde);
  color: var(--bg);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  width: 85px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--verde);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.countdown div:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px var(--verde);
}

.countdown span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--bg);
  line-height: 1;
}

.countdown small {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  color: var(--bg);
  opacity: 0.95;
}


.pacotes .plano {
  display: block;
  width: 280px;
  padding: 1.5rem 1.25rem;
  border-radius: 14px;
  border: 2px solid var(--verde);
  background: var(--bg);
  color: var(--verde);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.pacotes .plano:hover {
  transform: translateY(-8px);
  border-color: var(--laranja);
}

.pacotes .plano::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 0%;
  transition: width 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.pacotes .plano:hover::after {
  width: 100%;
}

.pacotes .plano h4 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--laranja);
  font-weight: 800;
}

.pacotes .plano .price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--verde);
  margin-bottom: 6px;
}

.pacotes .price-suffix {
  font-size: 1rem;
  opacity: 0.95;
  margin-left: 4px;
  color: var(--verde);
}

.pacotes .plano .sub {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
}

.pacotes .pacote-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.pacotes .feature-chip {
  background: rgba(0, 101, 114, 0.05);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--verde);
  font-size: 1rem;
  border: 1px solid rgba(0, 101, 114, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pacotes .feature-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.pacotes .feature-chip i {
  color: var(--laranja);
  min-width: 22px;
  margin-top: 2px;
}

.pacotes .cta-row {
  margin-top: 1.5rem;
}

.pacotes .btn-marketing {
  display: inline-block;
  padding: 1.15rem 2.2rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.pacotes .btn-marketing:hover {
  transform: translateY(-4px);
}

/* RESPONSIVIDADE */
@media (max-width: 920px) {
  .pacotes .pacote-inner {
    padding: 2.2rem 1.8rem 2.8rem;
  }

  .pacotes .section-title {
    font-size: 1.5rem;
  }

    .pacotes .oferta-titulo {
    font-size: 1.3rem;
  }

  .pacotes .section-lead {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
  }

  .pacotes .pacote-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 520px) {
  .pacotes .pacote-inner {
    padding: 1.5rem;
  }

  .pacotes .plano {
    width: 100%;
  }

  .pacotes .section-title {
    font-size: 1.35rem;
  }

  .pacotes .section-lead {
    font-size: 1rem;
  }

  .motivation {
    font-size: 1.6rem;
  }
}

/* ===========================
   TESTEMUNHOS
=========================== */

.testimonials-section {
  padding: 4rem 1.5rem;
  background-color: var(--neutro);
  color: var(--verde);
  text-align: center;
}

.testimonials-section .section-title {
  font-family: var(--fw-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.testimonials-section .section-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.testimonials-carousel-wrapper {
  width: 100%;
  display: block;
}

.testimonials-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 0.5rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--verde);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 1.8rem 1.6rem;
  min-width: 280px;
  max-width: 360px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--smooth), box-shadow 0.3s var(--smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.logo-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.testimonial-tagline {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--verde);
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.6rem;
  color: #333;
  line-height: 1.6;
  flex-grow: 1;
}

.client-name {
  font-weight: 700;
  color: var(--laranja);
  font-size: 0.95rem;
  margin-top: 1.4rem;
}

.audio-message {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
}

.play-btn {
  background: var(--laranja);
  color: #fff;
  border: none;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s var(--smooth), background 0.18s;
}

.play-btn:hover {
  transform: translateY(-3px);
  background: var(--verde);
}

.play-btn:active {
  transform: scale(0.97);
}

.audio-bar {
  flex: 1 1 auto;
  background: #e6e6e6;
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-width: 80px;
}

.audio-progress {
  background: var(--laranja);
  height: 100%;
  width: 0%;
  transition: width 0.25s linear;
}

.audio-time {
  font-size: 0.85rem;
  color: #555;
  min-width: 42px;
  text-align: right;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.audio-message {
  margin-top: auto;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.testimonials-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.24s;
}

.testimonials-dots button.active {
  background: var(--laranja);
}

/* RESPONSIVIDADE */
@media (min-width: 992px) {
  .testimonial-card {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .testimonials-carousel {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 1.4rem;
    min-height: auto;
  }

  .audio-message {
    width: 100%;
    gap: 0.6rem;
  }

  .play-btn {
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
  }

  .audio-bar {
    height: 6px;
  }

  .audio-time {
    min-width: 36px;
    font-size: 0.8rem;
  }
}

.testimonials-section,
.testimonials-carousel-wrapper,
.testimonials-carousel {
  overflow: visible !important;
}


/* ===========================
  FAQ
=========================== */

.faq-section {
  background: var(--verde);
  padding: 80px 20px;
  font-family: 'Work Sans', sans-serif;
  color: var(--verde);
  margin-bottom: 60px;
  text-align: center;
}

.faq-marketing-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-marketing-title .highlight {
  color: var(--laranja);
}

.faq-marketing-subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.faq-marketing-title,
.faq-marketing-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.2s;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq-card {
  background: var(--bg);
  border: 2px solid var(--laranja);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: background 0.3s;
}

.faq-question:hover {
  border-color: var(--laranja);
}

.faq-circle,
.dom-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--verde);
  margin-left: 0;
}

.dom-circle {
  border: 2px solid var(--laranja);
}

.faq-circle img,
.dom-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-title {
  flex-grow: 1;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-icon i {
  font-size: 1.5rem;
  color: var(--laranja);
  transition: transform 0.4s;
}

.faq-icon i.rotated {
  transform: rotate(180deg);
  color: var(--laranja);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
  margin-top: 0;
  display: flex;
  color: var(--laranja);
  font-size: 1rem;
  line-height: 1.5;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.faq-answer p {
  margin: 0;
  flex: 1;
  text-align: center;
}

.faq-card.open .faq-answer {
  max-height: 500px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-answer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq-answer p {
    margin-left: 0;
  }

  .faq-question {
    justify-content: center;
    text-align: center;
  }

  .faq-circle {
    margin-right: 10px;
  }
}



/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--verde);
  color: #bbb;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.footer-socials a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  gap: 0.5rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .footer-container {
    align-items: center;
  }

  .footer-socials {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    transform: none;
  }

  .site-footer p {
    font-size: 0.85rem;
  }
}


/* ===========================
   WHATSAPP
   =========================== */
.wpp-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  border-radius: 50px;
  padding: 12px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  animation: wppFadeIn 0.6s ease forwards;
  transition: background 0.3s ease;
}


@keyframes wppFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpp-container:hover {
  background: #20ba5a;
}


.wpp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #25d366;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.wpp-container:hover .wpp-icon {
  transform: rotate(10deg);
}


.wpp-message {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}


@media (max-width: 768px) {
  .wpp-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    right: 15px;
    bottom: 15px;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .wpp-message {
    display: none !important;
  }

  .wpp-icon {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    background: #fff;
    color: #25d366;
  }

  html,
  body {
    overflow-x: hidden;
    will-change: auto;
  }
}


@supports (bottom: env(safe-area-inset-bottom)) {
  .wpp-container {
    bottom: calc(15px + env(safe-area-inset-bottom));
  }
}

