@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DM_Sans/DMSans-VariableFont_opsz\wght.ttf);
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter/Inter-VariableFont_opsz\wght.ttf);
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url(../fonts/Open_Sans/OpenSans-VariableFont_wdth\wght.ttf);
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Confortaa";
  src: url(../fonts/Confortaa/Confortaa-Regular.ttf);
  font-display: swap;
}

@font-face {
  font-family: "Confortaa-Light";
  src: url("/fonts/Confortaa/Confortaa-Light.ttf");
  font-display: swap;
}

:root {
  --black: #000;
  --cinza: #707070;
  --cinza-darker: #868686;
  --white: #fff;
  --orange: #ff3500;
  --light-gray: #f4f4f4;
  --dark-gray: #333;
  --medium-gray: #6f6c90;
  --border-radius: 15px;
  --box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
  --quase-preto: #1e2c2c;
}

/* General Styles */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  user-select: none;
}
@media (max-width: 768px) {
  body {
    margin-top: 64px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: 1430px;
  padding: 0 15px;
}

/* Header */
header {
  display: flex;
  position: sticky;
  z-index: 999;
  top: 0;
  background-color: var(--white);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.24);
  height: 80px;
}

nav {
  width: 100%;
}

.navbar-brand {
  width: 120px;
}

.navbar-brand img {
  max-width: 100%;
}

header ul.navbar-nav li.nav-item a.nav-link {
  /* font-family: "Inter", sans-serif; */
  /* font-size: 16px; */
  /* font-weight: 600; */
  /* color: var(--black); */
  /* padding: 8px 16px; */
}

header .nav-link:hover {
  color: var(--orange) !important;
}

.navbar-toggler {
  box-shadow: none !important;
  padding: 8px !important;
}

/* Enhanced Layered Parallax Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 600px;
  background-color: var(--white);
}

.hero-container {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-content {
  width: 50%;
  padding: 80px 40px 80px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 94px;
    line-height: 94.53px;
    margin-bottom: 4px;
  }
}

.hero-content .text-primary {
  color: var(--orange) !important;
}

.hero-content .text-muted {
  color: var(--black) !important;
}

.hero-content p.lead {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-content .btn-primary {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 18px;
  z-index: 5;
}

.hero-content .btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}

/* Parallax Container and Layers */
.parallax-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax-banner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  will-change: transform;
}

.parallax-overlay-1 {
  position: absolute;
  top: 60%;
  right: 25%;
  width: 200px;
  height: 200px;
  background-image: url("../images/marker.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  will-change: transform;
}

.parallax-overlay-2 {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/stars.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  opacity: 0.8;
  will-change: transform;
}

/* Parallax effect */
@media (min-width: 992px) {
  .parallax-container {
    width: 100%;
  }

  .parallax-overlay-1 {
    top: 25%;
    right: 0%;
  }

  .parallax-overlay-2 {
    width: 100%;
    height: 100%;
  }

  /* Add subtle animation to overlay elements */
  @keyframes float {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-10px) rotate(5deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }

  @keyframes float-reverse {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(10px) rotate(-5deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }

  .parallax-overlay-1 {
    animation: float 6s ease-in-out infinite;
  }

  .parallax-overlay-2 {
    animation: float-reverse 8s ease-in-out infinite;
  }
}

/* Responsive adjustments for hero section */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    width: 100%;
    padding: 60px 15px;
    text-align: center;
    align-items: center;
  }

  .parallax-overlay-1 {
    top: 55%;
    right: 25%;
    width: 200px;
    height: 200px;
  }

  .parallax-overlay-2 {
    bottom: 10%;
    left: 10%;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
  }

  .parallax-overlay-1 {
    width: 100px;
    height: 100px;
  }

  .parallax-overlay-2 {
    width: 100%;
    height: 100%;
  }

  /* .hero-content h1 {
    font-size: 32px;
  } */

  .hero-content p.lead {
    font-size: 18px;
  }
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.left-column {
  position: relative;
  padding: 0 30px 0 30px;
}

.left-column-holder {
  align-content: center;
}

.left-column::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff3500 0%, #ffda06 48%, #ff3500 100%);
  box-shadow: 0px 0px 9px 0px rgba(255, 53, 0, 0.8);
}

.left-column h2 {
  font-size: 32px;
  margin-bottom: 30px;
  padding-left: 20px;
}

.left-column p {
  font-size: 16px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.left-column .btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  margin-top: 20px;
  margin-left: 20px;
}

.left-column .btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.feature-card:hover {
  background-color: var(--orange);
  transform: translateY(-5px);
}

.feature-card:hover h5,
.feature-card:hover p {
  color: var(--white);
}

.feature-card figure img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--medium-gray);
}

/* Menu & Catalog Section */
.menu-catalog-section {
  padding: 60px 0 0;
  background-color: #f0e4dc;
}
@media (min-width: 768px) {
  .menu-catalog-section {
    padding: 60px 0;
    background-color: #f0e4dc;
  }
}

.menu-option,
.catalog-option {
  text-align: center;
  padding: 30px;
}

.circle-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

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

.menu-option h3,
.catalog-option h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Interactive Menu & Catalog Section */
.option-selectable {
  cursor: pointer;
  position: relative;
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 2px solid transparent;
}

.option-selectable:hover {
  background-color: rgba(255, 53, 0, 0.05);
}

.option-selectable.active {
  border-color: var(--orange);
  background-color: rgba(255, 53, 0, 0.05);
}

.selection-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--orange);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.option-selectable.active .selection-indicator {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Section */
.pricing-section {
  padding: 20px 0 60px;
  background-color: #f0e4dc;
}

.pricing-section h2 {
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.pricing-section p {
  font-size: 18px;
  color: var(--medium-gray);
}

.pricing-toggle {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-toggle {
    margin: 40px 0 80px;
  }
}

.toggle-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--medium-gray);
  margin: 0 15px;
  cursor: pointer;
}

.toggle-label.active {
  color: var(--black);
}

.form-check-input {
  width: 60px !important;
  height: 30px !important;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}

.pricing-cards-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styles */
.price-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px 25px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
@media (max-width: 768px) {
  .price-card:last-of-type {
    margin-bottom: 0;
  }
}

.price-card:hover {
  transform: translateY(-10px);
}

/* Free Card */
.free-card {
  height: calc(100% - 20px);
  margin-top: 20px;
}

/* Premium Card */
.premium-card {
  background-color: var(--orange);
  color: var(--white);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
  height: calc(100% + 20px);
  margin-top: -10px;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Plus Card */
.plus-card {
  height: calc(100% - 20px);
  margin-top: 20px;
}

.popular-badge {
  color: #eaee88;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
}

.price-head {
  text-align: center;
  margin-bottom: 20px;
}

.price-amount h4 {
  font-size: 42px;
  font-weight: 700;
}

.price-amount .period {
  font-size: 18px;
  font-weight: 400;
}

.price-footer-btn {
  text-align: center;
  margin-bottom: 25px;
}

.price-footer-btn .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li img {
  width: 20px;
  margin-right: 10px;
  margin-top: 3px;
}

.btn-outline-primary {
  color: var(--orange);
  border-color: var(--orange);
}

.btn-outline-primary:hover {
  background-color: var(--orange);
  color: var(--white) !important;
}

.btn-premium {
  background-color: var(--white);
  color: var(--orange);
  border: none;
}

.btn-premium:hover {
  background-color: var(--black);
  color: var(--white) !important;
}

/* Pricing Slider for Mobile */
@media (max-width: 991px) {
  .premium-card {
    transform: none;
    margin-top: 0;
    height: 100%;
  }

  .free-card,
  .plus-card {
    height: 100%;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .pricing-cards-container {
    overflow: hidden;
  }

  #monthlyPricing,
  #annualPricing {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
    gap: 15px;
  }

  #monthlyPricing .col-lg-4,
  #annualPricing .col-lg-4 {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    padding: 0 5px;
  }

  .slider-controls {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .slider-arrow {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .slider-arrow:hover {
    background-color: var(--orange);
    color: var(--white);
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
  }

  .slider-dot.active {
    background-color: var(--orange);
    transform: scale(1.2);
  }
}

/* Features Tabs Section */
.features-tabs-section {
  padding: 80px 0;
  background-color: #f0e4dc;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto;
}

.tabs-sidebar {
  padding: 20px;
}

.tab-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-item.active,
.tab-item:hover {
  background-color: var(--white);
}

.tab-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: calc(100% - 20px);
  width: 4px;
  border-radius: 0 2px 2px 0;
}

.tab-icon i {
  color: var(--orange);
  font-size: 18px;
}

.tab-text h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.tab-text p {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.tab-content-area {
  padding: 20px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--orange);
}

.tab-content p {
  font-size: 16px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .tab-content p {
    margin-top: 0 !important;
  }
}

.tab-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.tab-content ul li {
  margin-bottom: 10px;
}

.tab-image {
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.faq-section h2 {
  margin-bottom: 50px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.faq-question:hover {
  background-color: rgba(255, 53, 0, 0.05);
}

.faq-question h4 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: var(--transition);
}

.faq-toggle i {
  transition: var(--transition);
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

/* Footer */
footer {
  padding: 0 0 52px 0;
  background-color: var(--white);
  border-top: 1px solid #eee;
}

.footer-box {
  display: flex;
  align-items: center;
}

.footer-box img {
  width: 100px;
  margin-right: 20px;
}

.footer-box .text {
  font-size: 14px;
  color: var(--medium-gray);
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.icon-parent {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  transition: var(--transition);
}

.icon-parent:hover {
  background-color: var(--orange);
}

.icon-parent img {
  width: 20px;
  height: 20px;
}

.t_c a {
  color: var(--medium-gray);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.t_c a:hover {
  color: var(--orange);
}

.custom-brd {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-icon-box {
  display: flex;
  align-items: center;
}

.whatsapp-icon-box img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.whatsapp-icon-box p {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 14px;
}

/* Shake Animation */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  /* .hero-content h1 {
    font-size: 40px;
  } */

  .price-card {
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  header {
    height: auto;
    position: fixed;
    width: 100%;
  }

  .navbar-collapse {
    margin-top: 15px;
  }

  /* .hero-content h1 {
    font-size: 36px;
  } */

  .hero-content p.lead {
    font-size: 18px;
  }

  .left-column {
    margin-bottom: 40px;
  }

  .feature-card {
    margin-bottom: 30px;
  }

  .tab-content-area {
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .features-section,
  .features-tabs-section,
  .faq-section {
    padding: 60px 0;
  }
  .pricing-section {
    padding: 0;
  }

  .price-card {
    margin-bottom: 30px;
  }

  .whatsapp-btn {
    padding: 10px;
  }

  .whatsapp-icon-box p {
    display: none;
  }
}

/* Pricing Slider for Mobile */
@media (max-width: 767px) {
  #monthlyPricing,
  #annualPricing {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
  }

  #monthlyPricing .col-lg-4,
  #annualPricing .col-lg-4 {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    padding: 0 10px;
  }

  .parallax-container {
    opacity: 0.5;
  }

  .slider-controls {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .slider-arrow {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .slider-arrow:hover {
    background-color: var(--orange);
    color: var(--white);
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
  }

  .slider-dot.active {
    background-color: var(--orange);
    transform: scale(1.2);
  }
}

@media (max-width: 576px) {
  /* .hero-content h1 {
    font-size: 28px;
  } */

  .left-column h2 {
    font-size: 24px;
  }

  .price-head h5 {
    font-size: 24px;
  }

  .price-amount h4 {
    font-size: 36px;
  }

  .tab-content h3 {
    font-size: 24px;
  }

  .faq-question h4 {
    font-size: 16px;
  }

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

  .footer-box img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer-icons {
    justify-content: center;
    margin-top: 20px;
  }

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

  .custom-brd {
    border-left: none;
    padding-left: 0;
    margin-top: 10px;
  }
}

/** Changes 03/06/2025 */
.comfortaa-600 {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.comfortaa-700 {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.bebas-neue-400 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.open-sans {
  font-family: "Open Sans";
}
.confortaa {
  font-family: "Confortaa";
}
.confortaa-light {
  font-family: "Confortaa-Light";
}
.color-quase-preto {
  color: var(--quase-preto);
}
.color-primary {
  color: var(--orange);
}
.color-cinza {
  color: var(--cinza);
}
.color-white {
  color: #fff;
}
.color-cinza-darker {
  color: var(--cinza-darker);
}
.btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  padding: 12px 30px;
}
.btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-22 {
  font-size: 22px;
}
.fw-600 {
  font-weight: 600;
}
.navbar-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .navbar-content {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
}
.navbar-custom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .navbar-custom {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-right: 60px;
  }
}
.p-0 {
  padding: 0;
}
.faq-item h4 {
  font-size: 16px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .faq-item h4 {
    font-size: 20px;
  }
}
.faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--cinza);
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
.faq-item.active h4 {
  color: var(--orange);
}
.carousel-text-bar {
  width: 55px;
  height: 2px;
  background-color: var(--orange);
}
.price-body p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
.price-head h4 {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.price-head h5 {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
.extras-container span {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-weight: 600;
}
h2 ~ p {
  font-size: 18px;
  color: var(--medium-gray);
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 36px;
  }
}
.container-adicione-extras {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .container-adicione-extras {
    flex-direction: row;
  }
}
.container-adicione-extras .option-card {
  max-width: 384px;
  cursor: inherit;
}
.container-adicione-extras span {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  text-align: left;
}

/** Glide Prices **/
.glide-month {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.glide-month .glide__bullets {
  bottom: -1em;
}
.glide-month .glide__bullet--active {
  background-color: #ff3500;
}
.glide-month .glide__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd !important;
  color: #ff3500;
  box-shadow: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glide-month .glide__arrow--left {
  left: -8px;
}
.glide-month .glide__arrow--right {
  right: -8px;
}
@media (min-width: 768px) {
  .glide-month .glide__slides {
    display: flex;
    overflow: visible !important;
    gap: 12px !important;
  }
  .glide-month .glide__track {
    overflow: inherit;
  }

  .glide-month .glide__slide {
    flex: 1;
    margin-right: 12px;
  }
  .glide-month .glide__slide:last-child {
    margin-right: 0;
  }
  .glide-month .glide__arrows {
    display: none;
  }
}
.btn-primary-blue {
  background-color: #5243c2;
  border-color: #5243c2;
  color: var(--white);
}

@media (max-width: 768px) {
  .featured-col {
    margin-top: 16px !important;
  }
  .featured-col .feature-card:last-of-type {
    margin-bottom: 0;
  }
  .feature-card {
    margin-bottom: 16px;
  }
}
.hover-card {
  background-color: var(--orange);
  transform: translateY(-5px);
  color: #fff;
}
.hover-card p {
  color: #fff;
}
.option-header-wprice {
  display: flex;
  justify-content: space-between;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.tab-content .tab-image.img-cel {
  max-width: 14em;
}
@media (max-width: 768px) {
  .tab-content .tab-image.img-cel {
    max-height: 248.36px;
  }
}
@media (min-width: 768px) {
  .tab-content .tab-image {
    max-width: 70%;
  }
  .tab-content .tab-image.img-cel {
    max-width: 20em;
  }
}
#demonstracao,
#funcionalidades,
#precos {
  scroll-margin-top: 80px;
}
.parcelas {
  /* left: 26px; */
  /* bottom: 4px; */
  font-size: 18px;
  /* position: absolute; */
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
.relative {
  position: relative;
}
@media (max-width: 768px) {
  .hero-content {
    background-color: rgba(255, 255, 255, 0.55);
  }
}
