@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff6b00;
  --orange-dark: #e05e00;
  --blue: #1a237e;
  --blue-dark: #111a5e;
  --white: #fff;
  --gray: #f7f8fc;
  --text: #1a1a2e;
  --muted: #5a5a5a;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--white);
}

.ann-bar {
  background: var(--orange);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ann-inner {
  display: inline-block;
  animation: ticker 22s linear infinite;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

@keyframes ticker {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
nav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 5%;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  width: 135px;
}

.btn-enter {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  padding: 10px 26px;
  font-size: 0.92rem;
}
.btn-enter:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-height: auto;
}

.hero-text h1 {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-text h1 span {
  color: var(--orange);
}
.hero-text p {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btns .btn-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  padding: 14px;
  font-size: 16px;
  display: inline-block;
  letter-spacing: 0.5px;
}
.btns .btn-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}
.btns .btn-demo {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  padding: 14px;
  font-size: 16px;
  display: inline-block;
  letter-spacing: 0.5px;
}
.btns .btn-demo:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 49, 104, 0.35);
}

.btn-enter,
.plan-btn,
.btn-white {
  text-decoration: none;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.hero-img {
  width: 600px;
}

.f-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: center;
  line-height: 1;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.f-badge span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 3px;
  white-space: nowrap;
}

.f1 {
  top: 200px;
  right: 120px;
  animation-delay: 0s;
}

.f2 {
  bottom: 100px;
  left: 700px;
  animation-delay: 1s;
}

.f3 {
  bottom: 100px;
  right: 100px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.benefits {
  background: var(--gray);
  padding: 90px 5%;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .tag {
  display: inline-block;
  background: rgba(250, 134, 51, 0.404);
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 10px;
}
.section-head p {
  color: var(--muted);
  font-size: 20px;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
  border: 2px solid #fff;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border: 2px solid #e05e00;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.card-icon img {
  width: 35px;
}
.card-icon {
  margin-bottom: 16px;
}

.segments {
  padding: 90px 5%;
  text-align: center;
  background-color: #fffaf7;
}

.segments-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.pill {
  background: var(--gray);
  border: 2px solid #eee;
  color: var(--text);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.2s;
  cursor: default;
}
.pill:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.testimonials {
  background: var(--gray);
  padding: 90px 5%;
}

.testi-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.stars {
  color: #ffb300;
  margin-bottom: 12px;
}
.stars img {
  width: 20px;
}

.testi-text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}
.testi-text::before {
  content: '"';
  font-size: 1.4rem;
  color: var(--orange);
  font-style: normal;
  line-height: 0;
  vertical-align: -6px;
  margin-right: 3px;
}
.testi-text::after {
  content: '"';
  font-size: 1.4rem;
  color: var(--orange);
  font-style: normal;
  line-height: 0;
  vertical-align: -6px;
  margin-left: 3px;
}

.plans {
  padding: 90px 5%;
  text-align: center;
}

.plan-wrapper {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.plan-card {
  background: #fff;
  border: 3px solid var(--orange);
  border-radius: 24px;
  padding: 48px 40px 40px;
  box-shadow: 0 16px 56px rgba(255, 107, 0, 0.18);
  position: relative;
  overflow: visible;
}

.plan-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 24px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 12px 0 4px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.plan-price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  vertical-align: super;
}
.plan-price sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin: 28px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}
.plan-features::-webkit-scrollbar {
  width: 4px;
}
.plan-features::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}
.plan-features::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}
.plan-features li {
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff9f4;
  border-radius: 10px;
  font-weight: 500;
}

.plan-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
}
.plan-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}

.plan-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

.final-cta {
  background: var(--orange);
  padding: 90px 5%;
  text-align: center;
}
.final-cta h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn-white {
  background: #fff;
  color: var(--orange-dark);
  border: none;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  padding: 16px 42px;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 300px;
  gap: 6px;
  margin: auto;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

footer {
  background: var(--blue);
  padding: 36px 5%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-inner .footer-text {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin-top: 6px;
}
.footer-inner .footer-text strong {
  color: rgba(255, 255, 255, 0.55);
  transition: 0.2s;
}
.footer-inner .footer-text a {
  text-decoration: none;
  color: #fdfcfb;
}
.footer-inner .footer-text a:hover {
  color: #fa933e;
}

.footer-logo {
  width: 150px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

.footer-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  transition: 0.2s;
}
.footer-wa:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-wa svg {
  width: 20px;
  height: 20px;
  fill: #25d366;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.redes a:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.demo-section {
  background-color: #fffaf7;
  background-image: url("img/FundoIconsFood.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}

.demo-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.demo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.demo-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transition: 0.25s;
}
.demo-card:hover .demo-img {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.demo-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.demo-btn {
  background: var(--blue);
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: 0.2s;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.demo-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.demo-btn img {
  width: 20px;
}

.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-flutuante .balao {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background-color: #fff;
  color: #000;
  padding: 10px 5px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  text-align: center;
  width: 250px;
}
.whatsapp-flutuante .balao i {
  position: fixed;
  right: 23px;
  bottom: 22px;
  font-size: 16px;
  filter: drop-shadow(0 0 12px rgba(252, 251, 251, 0.5));
}
.whatsapp-flutuante .botao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #ff6b00;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}
.whatsapp-flutuante .botao:hover {
  background-color: #ff9f31;
}
.whatsapp-flutuante .botao img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .f1 {
    top: 100px;
    right: -60px;
    animation-delay: 0s;
  }
  .f2 {
    bottom: 100px;
    left: 585px;
    animation-delay: 1s;
  }
  .f3 {
    bottom: 175px;
    right: 490px;
    animation-delay: 2s;
  }
}
@media (max-width: 1200px) {
  .btns .btn-cta {
    padding: 12px 10px;
    font-size: 14px;
  }
  .btns .btn-demo {
    padding: 12px 10px;
    font-size: 14px;
  }
  .f1 {
    top: 100px;
    right: -60px;
    animation-delay: 0s;
  }
  .f2 {
    bottom: 20px;
    left: 370px;
    animation-delay: 1s;
  }
  .f3 {
    bottom: 175px;
    right: 490px;
    animation-delay: 2s;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 10px 30px 10px;
  }
  .hero-visual {
    order: -1;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 25px;
    margin-top: 40px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-img {
    width: 300px;
  }
  .f-badge {
    padding: 10px;
  }
  .f-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-top: 3px;
  }
  .btns {
    justify-content: center;
  }
  .f1 {
    top: -45px;
    right: 230px;
    animation-delay: 0s;
  }
  .f2 {
    bottom: -40px;
    left: 200px;
    animation-delay: 1s;
  }
  .f3 {
    bottom: -65px;
    right: 200px;
    animation-delay: 2s;
  }
  .demo-section {
    background-color: #fffaf7;
    background-image: url("img/FundoFoodsMobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
  }
  .demo-btn {
    padding: 8px;
    font-size: 12px;
  }
  .demo-btn img {
    width: 15px;
  }
  .btns .btn-cta {
    padding: 12px 10px;
    font-size: 14px;
  }
  .btns .btn-demo {
    padding: 12px 10px;
    font-size: 14px;
  }
  .btn-enter {
    padding: 8px 20px;
    font-size: 16px;
  }
  .btn-enter:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
  }
  .plan-btn {
    padding: 10px;
  }
  .final-cta {
    padding: 30px 20px;
  }
  .final-cta h2 {
    font-size: 25px;
  }
  .final-cta p {
    font-size: 20px;
  }
  .btn-white {
    padding: 10px 20px;
    min-width: 200px;
  }
}
@media (max-width: 700px) {
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .plan-card {
    padding: 40px 24px 32px;
  }
}
@media (min-width: 1600px) {
  .f1 {
    top: 100px;
    right: -60px;
    animation-delay: 0s;
  }
  .f2 {
    bottom: 100px;
    left: 585px;
    animation-delay: 1s;
  }
  .f3 {
    bottom: 175px;
    right: 490px;
    animation-delay: 2s;
  }
}/*# sourceMappingURL=styles.css.map */