:root {
  --primary-orange: #F68207;
  --primary-blue: #3498db;
  --light-blue: #e6f7ff;
  --green-button: #01C853;
  --green2-button: #007D00;
  --teal-blue: #2980b9;
  --blur-strength: 8px;
  --border-opacity: 0.2;
  --green-span: #22a85b;
}

body {
  font-family: 'Questrial', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, var(--light-blue) 0%, #f0f8ff 100%);
  color: #333;
  font-weight: normal;
}

body {
  background-image: url('../../imagens/background.png');
  background-size: cover;
  background-attachment: scroll;
  background-position: top;
  background-repeat: no-repeat;
}

.img-fluid2 {
  max-width: 100%;
  height: auto
}

.hanken-font {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500 !important;
  font-style: normal;
}

.full-margin>* {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.logo {
  font-weight: bold;
  font-size: 28px;
}

.logo-orange {
  color: var(--primary-orange);
}

.logo-blue {
  color: var(--teal-blue);
}

.hero-section {
  padding: 20px 30px;
}

.hero-text {
  font-size: calc(1.4rem + 3vw) !important;
  color: #000;
  line-height: 1.1;
}

.hero-text p {
  color: var(--primary-orange);
}

.subtitle {
  /* font-size: 2.5rem; */
  font-size: calc(1rem + 1.2vw) !important;
  color: var(--primary-orange);
  margin-bottom: 30px;
}

.price {
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

.btn-action.pisca {
  animation: pulse-glow 1s infinite;
}

@keyframes pulse-glow {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.1);
  }

  100% {
    filter: brightness(1);
  }
}

.btn-action {
  background-color: var(--green-button);
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 1.9rem;
  border: none;
  border-bottom: 5px solid #3bf99a;
  font-size: 3rem;
  transition: all 0.3s ease;
  position: relative;
}

.btn-action:hover {
  background-color: #27ae60;
  transform: translateY(-3px);
  border-bottom-width: 5px;
  /* Espessura aumenta no hover */
  border-bottom-color: #2fd683;
  color: white;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] {
  background-color: #27ae60;
  color: white;
  border-bottom: 5px solid #3bf99a;
}

.btn-action:focus,
.btn-action.focus {
  color: #fff;
  background-color: #27ae60;
  border-color: #27ae60;
  border-bottom-color: #2fd683;
}

.btn-action:active,
.btn-action.active,
.open>.dropdown-toggle.btn-action {
  color: #fff;
  background-color: #27ae60;
  border-color: #27ae60;
  border-bottom-color: #2fd683;
}

.btn-action:active:hover,
.btn-action.active:hover,
.open>.dropdown-toggle.btn-action:hover,
.btn-action:active:focus,
.btn-action.active:focus,
.open>.dropdown-toggle.btn-action:focus,
.btn-action:active.focus,
.btn-action.active.focus,
.open>.dropdown-toggle.btn-action.focus {
  color: #fff;
  background-color: #27ae60;
  border-color: #27ae60;
  border-bottom-color: #2fd683;
}

.btn-action:active,
.btn-action.active,
.open>.dropdown-toggle.btn-action {
  background-image: none;
}

.btn-action.disabled,
.btn-action[disabled],
fieldset[disabled] .btn-action,
.btn-action.disabled:hover,
.btn-action[disabled]:hover,
fieldset[disabled] .btn-action:hover,
.btn-action.disabled:focus,
.btn-action[disabled]:focus,
fieldset[disabled] .btn-action:focus,
.btn-action.disabled.focus,
.btn-action[disabled].focus,
fieldset[disabled] .btn-action.focus,
.btn-action.disabled:active,
.btn-action[disabled]:active,
fieldset[disabled] .btn-action:active,
.btn-action.disabled.active,
.btn-action[disabled].active,
fieldset[disabled] .btn-action.active {
  background-color: #27ae60;
}

.stats {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-orange);
  margin: 30px 0 20px;
}

.section-title {
  color: var(--primary-orange);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.history-section {
  position: relative;
}

.history-card {
  text-align: justify;
  backdrop-filter: blur(var(--blur-strength));
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(250, 238, 178, 0.8);
  box-shadow:
    inset -52px -52px 34px rgba(250, 238, 178, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.simplified-section {
  background-color: #fff;
  padding: 40px 0;
  margin: 40px 0;
}

.simplified-text {
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
}

.lightbulb-icon {
  color: var(--teal-blue);
  font-size: 3rem;
  margin-right: 15px;
}

.contract-types {
  padding: 10px 0;
}

.contract-types .section-title {
  font-size: 4rem !important;
}

@media (max-width: 768px) {

  .hero-text {
    font-size: calc(1.2rem + 1.5vw) !important;
    line-height: 1.8rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .price {
    font-size: calc(1.2rem + 1.5vw) !important;
  }

  .btn-action {
    border-radius: 1rem;
  }

  .cta-bottom {
    font-size: 1.5rem !important;
  }

  .contract-types .section-title {
    font-size: 2rem !important;
  }
}

.contract-card {
  text-align: justify;
  backdrop-filter: blur(var(--blur-strength));
  border-radius: 35px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset -52px -52px 34px rgba(255, 255, 255, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-section {
  padding: 20px 0;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item h4 {
  font-weight: bold;
}

.faq-item p {
  font-size: 0.9rem;
}

.cta-bottom {
  border-radius: 70px !important;
}

.footer {
  padding: 50px 0;
}

.footer h4 {
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer h1 {
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 2px;
}

.footer ul li span {
  color: var(--green-span);
}

.footer ul li a {
  text-decoration: none;
  color: #000;
}

.footer ul li a:hover {
  color: var(--primary-orange);
}

.social-icons a {
  color: #000;
  font-size: 2.2rem;
  margin-right: 15px;
}

.social-icons a:hover {
  color: var(--primary-orange);
}

.security-badges img {
  height: 40px;
  margin-right: 10px;
}

.contract-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.image-section {
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1440px) {

  .hero-section {
    padding: 10px 10px;
  }

  .hero-text {
    font-size: calc(2rem + 3vw) !important
  }

  .price {
    font-size: 2rem;
  }

  .simplified-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 10px 10px;
  }

  .hero-text {
    font-size: calc(1rem + 3vw) !important
  }

  .price {
    font-size: calc(1.2rem + 1.5vw) !important;
  }

  .btn-action {
    font-size: 1.2rem;
    min-width: 280px;
    padding: 12px 30px;
  }
}

.depoimento-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(var(--blur-strength));
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.user-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.depoimento-content {
  text-align: justify;
  padding-left: 40px;
  padding-right: 40px;
  /* Espaço para a foto */
}

.depoimento-texto {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.depoimento-texto::after {
  content: "”";
}

.depoimento-texto::before {
  content: "“";
}

.depoimento-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.depoimento-autor {
  margin-bottom: 0.3rem;
}

.depoimento-local {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.estrelas {
  display: flex;
  margin-top: 5px;
  margin-bottom: 15px;
  gap: 4px;
  /* Espaço entre estrelas */
}

.estrela {
  display: inline-block;
  width: 34px;
  /* Ajuste conforme necessário */
  height: 34px;
  background-image: url('../../imagens/estrela.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] {
  background-color: #27ae60;
  color: white;
  border-bottom: 5px solid #3bf99a;
}

.btn-action:focus,
.btn-action.focus {
  color: #fff;
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-action:active,
.btn-action.active,
.open>.dropdown-toggle.btn-action {
  color: #fff;
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-action:active:hover,
.btn-action.active:hover,
.open>.dropdown-toggle.btn-action:hover,
.btn-action:active:focus,
.btn-action.active:focus,
.open>.dropdown-toggle.btn-action:focus,
.btn-action:active.focus,
.btn-action.active.focus,
.open>.dropdown-toggle.btn-action.focus {
  color: #fff;
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-action:active,
.btn-action.active,
.open>.dropdown-toggle.btn-action {
  background-image: none;
}

.btn-action.disabled,
.btn-action[disabled],
fieldset[disabled] .btn-action,
.btn-action.disabled:hover,
.btn-action[disabled]:hover,
fieldset[disabled] .btn-action:hover,
.btn-action.disabled:focus,
.btn-action[disabled]:focus,
fieldset[disabled] .btn-action:focus,
.btn-action.disabled.focus,
.btn-action[disabled].focus,
fieldset[disabled] .btn-action.focus,
.btn-action.disabled:active,
.btn-action[disabled]:active,
fieldset[disabled] .btn-action:active,
.btn-action.disabled.active,
.btn-action[disabled].active,
fieldset[disabled] .btn-action.active {
  background-color: #27ae60;
}

.btn-action .badge {
  color: #337ab7;
  background-color: #fff;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}