/*
 * Folha de estilos 
 * Utilizar arquivo ".scss"
 * Guia: https://sass-lang.com/
 * Home do portal - Carven
 * Copyright 2022 ValidHUB.
 * Gilberto Alves
*/
@import url(principal.css);
html {
  scroll-behavior: smooth;
  -o-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

header nav#navbar-home {
  font-family: "Poppins", sans-serif;
  background-color: #01010d;
  border-bottom: 3px solid #ff4841;
  min-height: 99px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

header nav#navbar-home .container {
  max-width: 1140px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

header nav#navbar-home .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 2rem;
}

header nav#navbar-home .navbar-brand:hover {
  transform: scale(1.05);
}

header nav#navbar-home .navbar-logo {
  height: auto;
  max-height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}

header nav#navbar-home .navbar-brand:hover .navbar-logo {
  opacity: 0.9;
}

header nav#navbar-home .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  background: transparent;
  transition: all 0.3s ease;
  order: 2;
}

header nav#navbar-home .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 72, 65, 0.25);
}

header nav#navbar-home .navbar-toggler:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

header nav#navbar-home .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

header nav#navbar-home .navbar-toggler.is-active .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
}

header nav#navbar-home .navbar-collapse {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* menu hambúrguer*/
@media (max-width: 1112px) {
  header nav#navbar-home .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #01010d;
    order: 3;
    width: 100%;
    margin: 0;
    flex-basis: auto;
    z-index: 900;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: calc(100vh - 99px);
  }

  header nav#navbar-home .navbar-collapse:not(.show) {
    display: none !important;
  }

  header nav#navbar-home .navbar-collapse.show {
    display: flex !important;
  }

  header nav#navbar-home ul.navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  header nav#navbar-home ul.navbar-nav li {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  header nav#navbar-home ul.navbar-nav li:not(:last-child):after {
    display: none;
  }

  header nav#navbar-home ul.navbar-nav li a.nav-link {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  header nav#navbar-home ul.navbar-nav li a.nav-link::after {
    display: none;
  }

  header nav#navbar-home ul.navbar-nav li a.nav-link:hover {
    background: rgba(255, 72, 65, 0.1);
  }
}

@media (min-width: 992px) and (max-width: 1112px) {
  header nav#navbar-home.navbar-expand-lg .navbar-toggler {
    display: block;
  }

  header nav#navbar-home.navbar-expand-lg .navbar-collapse {
    display: none !important;
  }

  header nav#navbar-home.navbar-expand-lg .navbar-collapse.show {
    display: flex !important;
  }
}

@media (min-width: 1113px) {
  header nav#navbar-home .navbar-toggler {
    display: none;
  }

  header nav#navbar-home .navbar-collapse {
    position: static;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: flex !important;
  }
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1113px) {
  .mobile-menu-backdrop {
    display: none !important;
  }
}

header nav#navbar-home ul.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

header nav#navbar-home ul.navbar-nav li {
  display: flex;
  align-items: center;
  position: relative;
}

header nav#navbar-home ul.navbar-nav li:not(:last-child):after {
  content: "";
  height: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
  transition: background 0.3s ease;
}

header nav#navbar-home ul.navbar-nav li:hover:not(:last-child):after {
  background: rgba(255, 255, 255, 0.4);
}

header nav#navbar-home ul.navbar-nav li a.nav-link {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 13px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

header nav#navbar-home ul.navbar-nav li a.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff4841;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav#navbar-home ul.navbar-nav li a.nav-link:hover::after,
header nav#navbar-home ul.navbar-nav li a.nav-link.active::after {
  width: 80%;
}

header nav#navbar-home ul.navbar-nav li a.nav-link:hover {
  color: #ff4841;
  transform: translateY(-2px);
}

header nav#navbar-home ul.navbar-nav li a.nav-link.active {
  color: #ff4841;
}

@media (max-width: 1112px) {
  header nav#navbar-home ul.navbar-nav li:not(:last-child):after {
    display: none;
  }

  header nav#navbar-home ul.navbar-nav li a.nav-link {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  header nav#navbar-home ul.navbar-nav li a.nav-link::after {
    display: none;
  }
}

header nav#navbar-home div.botoes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: 2rem;
}

header nav#navbar-home div.botoes a.acessar {
  font-size: 13px;
  background: linear-gradient(135deg, #ff4841 0%, #ff6b5a 100%);
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  color: #fff;
  padding: 10px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 72, 65, 0.3);
  position: relative;
  overflow: hidden;
}

header nav#navbar-home div.botoes a.acessar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

header nav#navbar-home div.botoes a.acessar:hover::before {
  left: 100%;
}

header nav#navbar-home div.botoes a.acessar:hover {
  background: linear-gradient(135deg, #e63946 0%, #ff4841 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 72, 65, 0.4);
}

header nav#navbar-home div.botoes a.acessar:active {
  transform: translateY(0);
}

header nav#navbar-home div.botoes a.usuario {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
}

header nav#navbar-home div.botoes .usuario-greeting {
  font-size: 11px;
  opacity: 0.9;
}

header nav#navbar-home div.botoes .usuario-action {
  font-size: 12px;
  margin-top: 2px;
}

header nav#navbar-home div.botoes a.sair {
  padding: 10px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

header nav#navbar-home div.botoes a.sair:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

header nav#navbar-home div.botoes a.sair > i {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

main#general-content {
  background-color: #fff;
}
main#general-content a {
  font-size: 13px;
}
main#general-content .btn-orange-valid {
  font-size: 12px;
  background: #ff4841;
  border-radius: 0px;
  border-bottom-width: 0px;
  transition: 0.4s;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 8px 26px;
}
main#general-content .btn-orange-valid:hover {
  background: #a70600;
}
main#general-content .btn-black-valid {
  font-size: 12px;
  background: #01010d;
  border-radius: 0px;
  border-bottom-width: 0px;
  transition: 0.4s;
  color: #fff;
  font-weight: bold;
  padding: 8px 32px;
}
main#general-content section#banner {
  border-bottom: 3px solid #ff4841;
  min-height: 500px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

main#general-content section#banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    45deg,
    rgba(255, 72, 65, 0.1) 0%,
    rgba(255, 72, 65, 0.05) 100%
  );
  border-radius: 50%;
  z-index: 0;
}

main#general-content section#banner .row {
  position: relative;
  z-index: 1;
}
main#general-content section#banner h1 {
  font-size: 50px !important;
}
main#general-content section#about-carven #vantagens {
  padding: 4rem 0;
  background: #fff;
}

main#general-content section#about-carven #vantagens .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

main#general-content section#about-carven div.row.cards-section {
  margin-top: 2.5rem;
}

main#general-content section#about-carven .advantage-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

main#general-content section#about-carven .advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff4841, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

main#general-content section#about-carven .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 72, 65, 0.3);
}

main#general-content section#about-carven .advantage-card:hover::before {
  opacity: 1;
}

main#general-content section#about-carven .advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 72, 65, 0.1) 0%,
    rgba(255, 72, 65, 0.05) 100%
  );
  border-radius: 50%;
  transition: all 0.3s ease;
}

main#general-content
  section#about-carven
  .advantage-card:hover
  .advantage-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 72, 65, 0.2) 0%,
    rgba(255, 72, 65, 0.1) 100%
  );
  transform: scale(1.1);
}

main#general-content section#about-carven .advantage-icon img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

main#general-content section#about-carven .advantage-card h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #01010d;
  margin-bottom: 1rem;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

main#general-content section#about-carven .advantage-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
  margin: 0;
}
main#general-content section#contact {
  background: #e9e9e9;
  color: #01010d;
}
main#general-content section#contact h2 {
  font-weight: 600;
  font-size: 33px;
  letter-spacing: -2px;
}
main#general-content section#contact div.row {
  padding: 0 15px;
  max-width: 1140px;
  margin: 0 auto;
}
main#general-content section#contact div.row div.position-absolute {
  right: 0;
  margin-right: 1.5rem;
}
main#general-content section#contact div.row p {
  font-size: 22px;
}
main#general-content section#contact div.row p span {
  font-weight: 700;
}
main#general-content section#quote {
  background: #01010d;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

main#general-content section#quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff4841, transparent);
}

main#general-content section#quote .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

main#general-content section#quote h2 {
  color: #ff4841;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 3rem;
}

main#general-content section#quote .quote-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 72, 65, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

main#general-content section#quote .quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4841, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

main#general-content section#quote .quote-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 72, 65, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(255, 72, 65, 0.1);
}

main#general-content section#quote .quote-card:hover::before {
  opacity: 1;
}

main#general-content section#quote .quote-stars {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  justify-content: center;
}

main#general-content section#quote .quote-stars i {
  font-size: 1.1rem;
  color: #ff4841;
  line-height: 1;
}

main#general-content section#quote .quote-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 400;
}

main#general-content section#quote .quote-author {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

main#general-content section#quote .quote-author strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

main#general-content section#quote .quote-author span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
}

main#general-content section#faq {
  padding: 4rem 0;
}

main#general-content section#faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -2px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-list details {
  background: #fff;
  margin-bottom: 0;
  border-bottom: 1px solid #e9ecef;
}

.faq-list details summary {
  padding: 1.5rem 2rem;
  background: #fff;
  color: #212529;
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list details summary::-webkit-details-marker {
  display: none;
}

.faq-list details summary::marker {
  display: none;
}

.faq-list details summary .fa-angle-up {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.faq-list details[open] summary .fa-angle-up {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details summary h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #212529;
  line-height: 1.5;
  flex: 1;
  padding-right: 2rem;
}

.faq-list details .faq-content {
  padding: 1.5rem 2rem;
  background: #fff;
}

.faq-list details .faq-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: left;
}

main#general-content section#banner h2,
main#general-content section#about-carven h2 {
  color: #ff4841;
  font-size: 33px;
  font-weight: 600;
  margin-top: 1.9rem;
  letter-spacing: -2px;
}
main#general-content section#banner div.row,
main#general-content section#about-carven div.row {
  padding: 0 15px;
  max-width: 1140px;
  margin: 0 auto;
}
main#general-content section#banner div.row div.div_text,
main#general-content section#about-carven div.row div.div_text {
  color: #01010d;
}
main#general-content section#banner div.row div.div_text h1,
main#general-content section#about-carven div.row div.div_text h1 {
  font-size: 30px;
  letter-spacing: 0.1px;
  font-weight: 700;
}
main#general-content section#banner div.row div.div_text p,
main#general-content section#about-carven div.row div.div_text p {
  font-size: 22px;
}
main#general-content section#banner div.row div.div_text p span,
main#general-content section#about-carven div.row div.div_text p span {
  font-weight: 700;
}

main#general-content section#sobre-carven-hero.sobre-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 40%, #ffecec 100%);
  color: #01010d;
  padding: 5rem 0 4rem;
}

main#general-content section#sobre-carven-hero .sobre-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: #ff4841;
  margin-bottom: 1rem;
  font-weight: 600;
}

main#general-content section#sobre-carven-hero .sobre-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

main#general-content section#sobre-carven-hero .sobre-hero-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
  max-width: 720px;
  color: #343a40;
}

main#general-content section#sobre-carven-hero .sobre-hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.9rem;
}

main#general-content section#sobre-carven-hero .sobre-hero-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem;
}

main#general-content section#sobre-carven-hero .sobre-hero-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  color: #343a40;
}

main#general-content section#sobre-carven-hero .sobre-hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #ff4841;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  main#general-content section#sobre-carven-hero.sobre-hero {
    padding: 3.5rem 0 2.75rem;
  }

  main#general-content section#sobre-carven-hero .sobre-hero-title {
    font-size: 2rem;
  }
}

main#general-content section#sobre-valid-hub h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #01010d;
}

main#general-content section#sobre-valid-hub p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #333;
}

main#general-content section#sobre-valid-hub ul.list-unstyled li {
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  main#general-content section#sobre-valid-hub {
    padding: 3rem 0 3rem;
  }

  main#general-content section#sobre-valid-hub h2 {
    font-size: 1.7rem;
  }
}

.big-numbers-section {
  padding: 2rem 1rem;
  animation: fadeInRight 0.8s ease-out 0.5s both;
}

.big-numbers-section .row {
  margin-left: -12px;
  margin-right: -12px;
}

.big-numbers-section .col-6 {
  padding-left: 12px;
  padding-right: 12px;
}

.big-number-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 72, 65, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.big-number-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 72, 65, 0.15);
  border-color: rgba(255, 72, 65, 0.4);
}

.big-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4841 0%, #ff6b5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.big-number-label {
  font-size: 0.85rem;
  color: #495057;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.features-list {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.features-list .feature-item {
  font-size: 16px;
  color: #01010d;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 72, 65, 0.1);
}

.features-list .feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  border-color: rgba(255, 72, 65, 0.3);
}

.features-list .feature-item i {
  font-size: 18px;
  padding: 8px;
  background: linear-gradient(135deg, #ff4841 0%, #ff6b5a 100%);
  border-radius: 50%;
  color: white !important;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

main#general-content .btn-orange-valid {
  background: linear-gradient(135deg, #ff4841 0%, #ff6b5a 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 72, 65, 0.3);
}

main#general-content .btn-orange-valid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 72, 65, 0.4);
  background: linear-gradient(135deg, #e63946 0%, #ff4841 100%);
}

footer.footer-portal {
  background-color: #01010d;
  color: #fff;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #2c2d32;
}

footer.footer-portal .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

footer.footer-portal .footer-main {
  margin-bottom: 2rem;
}

footer.footer-portal .footer-column {
  margin-bottom: 2rem;
  text-align: center;
}

footer.footer-portal .footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

footer.footer-portal .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer-portal .footer-links li {
  margin-bottom: 0.8rem;
}

footer.footer-portal .footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

footer.footer-portal .footer-links li a:hover {
  color: #ff4841;
  text-decoration: underline;
}

footer.footer-portal .footer-contact {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}

footer.footer-portal .footer-contact p {
  margin-bottom: 0.8rem;
  text-align: center;
}

footer.footer-portal .footer-contact p:last-child {
  margin-bottom: 0;
}

footer.footer-portal .footer-contact strong {
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}

footer.footer-portal .footer-contact a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

footer.footer-portal .footer-contact a:hover {
  color: #ff4841;
  text-decoration: underline;
}

footer.footer-portal .footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

footer.footer-portal .footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

footer.footer-portal .footer-social .social-icon:hover {
  background-color: #ff4841;
  color: #fff;
  transform: translateY(-2px);
}

footer.footer-portal .footer-divider {
  height: 1px;
  background-color: #2c2d32;
  margin: 2rem 0 1.5rem;
}

footer.footer-portal .footer-bottom {
  padding-top: 1rem;
}

footer.footer-portal .footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

footer.footer-portal .footer-copyright {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 400;
}

footer.footer-portal .footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

footer.footer-portal .footer-policy-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

footer.footer-portal .footer-policy-links a:hover {
  color: #ff4841;
}

@media (max-width: 576px) {
  footer.footer-portal .footer-contact p,
  footer.footer-portal .footer-contact a {
    text-align: center;
  }

  footer.footer-portal .footer-contact strong {
    display: inline;
  }
}

/* estilização para tablet grande */
@media (max-width: 1100px) and (min-width: 993px) {
  main#general-content section#banner .row {
    align-items: center;
  }

  main#general-content section#banner .row .div_text {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  main#general-content section#banner .row .col-12.col-md-5 {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .big-numbers-section {
    padding: 1.5rem 0.75rem;
    max-width: 100%;
  }

  .big-numbers-section .row {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .big-numbers-section .col-6 {
    padding-left: 8px;
    padding-right: 8px;
    flex: 0 0 48%;
    max-width: 48%;
  }

  .big-number-card {
    min-height: 140px;
    padding: 1.5rem 1rem;
  }

  .big-number {
    font-size: 1.8rem;
  }

  .big-number-label {
    font-size: 0.75rem;
  }

  footer.footer-portal .footer-contact p,
  footer.footer-portal .footer-contact a {
    text-align: center;
  }

  footer.footer-portal .footer-contact strong {
    display: inline;
  }
}

/* estilização para tablet médio */
@media (max-width: 992px) and (min-width: 769px) {
  main#general-content section#banner > .row {
    flex-direction: row;
    align-items: center;
    padding: 0 1rem;
  }

  main#general-content section#banner .row .div_text {
    text-align: left;
    padding: 2rem 1.5rem;
    flex: 0 0 50%;
    max-width: 50%;
  }

  main#general-content section#banner .row .col-12.col-md-5 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 0;
    padding: 0 1rem;
  }

  .big-numbers-section {
    margin-top: 0;
    padding: 1rem 0.5rem;
    width: 100%;
  }

  .big-numbers-section .row {
    margin-left: -4px;
    margin-right: -4px;
    width: 100%;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .big-numbers-section .col-6 {
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 0.5rem;
    flex: 0 0 48%;
    max-width: 48%;
  }

  .big-number-card {
    min-height: 130px;
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
  }

  .big-number {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }

  .big-number-label {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }
}

/* estilização para tablet */
@media (max-width: 768px) {
  header nav#navbar-home .navbar-brand {
    margin-right: auto;
    margin-bottom: 0;
  }

  header nav#navbar-home .navbar-toggler {
    order: 2;
    margin-left: auto;
  }

  header nav#navbar-home .navbar-collapse {
    padding-top: 0;
  }

  header nav#navbar-home div.botoes {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: 0;
    order: 4;
  }

  main#general-content a.btn-black-valid {
    color: #01010d;
    background: #fff;
    border: 1px solid transparent;
    transition: 0.4s;
    font-size: 14px !important;
  }
  main#general-content a.btn-black-valid:hover {
    background: #01010d;
    border: 1px solid #fff;
    color: #fff;
  }

  main#general-content section#banner {
    opacity: 95%;
    border-bottom: 0;
  }

  main#general-content section#banner .row .div_text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main#general-content section#banner .row .div_text h1,
  main#general-content section#banner .row .div_text p {
    font-size: 17px !important;
    text-align: center;
    color: #000;
    font-weight: 600;
  }
  main#general-content section#banner .row .div_text a {
    margin-top: 0;
  }
  main#general-content section#about-carven #vantagens {
    padding: 2.5rem 0;
  }

  main#general-content section#about-carven #vantagens h2 {
    font-size: 25px;
  }

  main#general-content section#about-carven #carven-video p {
    font-size: 15px;
    text-align: center;
    margin-top: 1rem;
  }

  main#general-content section#about-carven .advantage-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }

  main#general-content section#about-carven .advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.2rem;
  }

  main#general-content section#about-carven .advantage-icon img {
    max-width: 45px;
    max-height: 45px;
  }

  main#general-content section#about-carven .advantage-card h3 {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }

  main#general-content section#about-carven .advantage-card p {
    font-size: 13px;
    line-height: 1.5;
  }
  main#general-content section#contact h2 {
    font-size: 25px;
  }
  main#general-content section#contact div.row div.position-absolute {
    position: initial !important;
    margin-right: 0;
  }
  main#general-content section#contact div.row p {
    font-size: 14px;
    text-align: center;
  }
  main#general-content section#contact div.row p br {
    display: none;
  }
  main#general-content section#banner {
    min-height: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
  }

  main#general-content section#banner::before {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -10%;
  }

  .big-numbers-section {
    margin-top: 1.5rem;
    padding: 0.75rem 0.5rem;
    width: 100%;
  }

  .big-numbers-section .row {
    margin-left: -3px;
    margin-right: -3px;
    width: 100%;
    padding: 0 !important;
  }

  .big-numbers-section .col-6 {
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 0.5rem;
  }

  .big-number-card {
    min-height: 110px;
    padding: 0.9rem 0.4rem;
    margin-bottom: 0;
    border-radius: 10px;
  }

  .big-number {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }

  .big-number-label {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }

  main#general-content section#banner > .row {
    padding: 0 0.5rem;
  }

  main#general-content section#banner .row .div_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.75rem;
    text-align: center;
  }

  main#general-content section#banner .row .col-12.col-md-5 {
    padding: 0 0.5rem;
  }

  main#general-content section#banner .row .div_text h1 {
    font-size: 1.9rem !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
  }

  main#general-content section#banner .row .div_text p {
    font-size: 1.1rem !important;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .features-list {
    margin: 1.5rem 0;
  }

  .features-list .feature-item {
    justify-content: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 1rem;
  }

  .features-list .feature-item span {
    font-size: 0.9rem;
  }

  .features-list .feature-item i {
    font-size: 1.1rem;
    margin-right: 1rem;
    width: 30px;
    height: 30px;
  }
  main#general-content section#banner h1 {
    font-size: 17px;
  }
  main#general-content section#quote {
    padding: 2.5rem 0;
  }

  main#general-content section#quote h2 {
    font-size: 25px;
    margin-bottom: 2rem;
  }

  main#general-content section#quote .quote-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  main#general-content section#quote .quote-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
  }

  main#general-content section#quote .quote-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  main#general-content section#quote .quote-author {
    padding-top: 1.2rem;
  }

  main#general-content section#quote .quote-author strong {
    font-size: 0.95rem;
  }

  main#general-content section#quote .quote-author span {
    font-size: 0.85rem;
  }

  main#general-content section#faq {
    padding: 2rem 0;
  }

  main#general-content section#faq h2 {
    font-size: 25px;
    margin-bottom: 1.5rem;
  }

  .faq-list {
    padding: 0 1rem;
  }

  .faq-list details {
    margin-bottom: 0;
  }

  .faq-list details summary {
    padding: 1.2rem 1.5rem;
  }

  .faq-list details summary h3 {
    font-size: 0.95rem;
    padding-right: 2rem;
  }

  .faq-list details summary .fa-angle-up {
    right: 1.5rem;
    font-size: 0.8rem;
  }

  .faq-list details .faq-content {
    padding: 1.2rem 1.5rem;
  }

  .faq-list details .faq-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  footer.footer-portal {
    padding: 2rem 0 1rem;
  }

  footer.footer-portal .footer-main {
    margin-bottom: 1.5rem;
  }

  footer.footer-portal .footer-column {
    margin-bottom: 2rem;
    text-align: center;
  }

  footer.footer-portal .footer-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  footer.footer-portal .footer-links li {
    margin-bottom: 0.6rem;
  }

  footer.footer-portal .footer-links li a {
    font-size: 0.85rem;
  }

  footer.footer-portal .footer-contact {
    font-size: 0.85rem;
    text-align: center;
  }

  footer.footer-portal .footer-contact p {
    text-align: center;
  }

  footer.footer-portal .footer-social {
    justify-content: center;
  }

  footer.footer-portal .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  footer.footer-portal .footer-policy-links {
    justify-content: center;
    gap: 0.8rem;
  }

  footer.footer-portal .footer-policy-links a {
    font-size: 0.85rem;
  }
}

/* estilização para mobile */
@media (max-width: 576px) {
  .big-numbers-section {
    padding: 0.5rem 0.25rem;
    margin-top: 1rem;
  }

  .big-numbers-section .row {
    margin-left: -2px;
    margin-right: -2px;
    padding: 0 !important;
  }

  .big-numbers-section .col-6 {
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 0.4rem;
  }

  .big-number-card {
    min-height: 100px;
    padding: 0.75rem 0.3rem;
    border-radius: 8px;
  }

  .big-number {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .big-number-label {
    font-size: 0.65rem;
    letter-spacing: 0.2px;
  }

  main#general-content section#banner > .row {
    padding: 0 0.25rem;
  }

  main#general-content section#banner .row .div_text {
    padding: 1rem 0.5rem;
  }

  main#general-content section#banner .row .col-12.col-md-5 {
    padding: 0 0.25rem;
  }
}

/* modal de oferta */
#modalOfertaEspecial .modal-dialog {
  max-width: 500px;
}

#modalOfertaEspecial .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#modalOfertaEspecial .modal-oferta-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0;
  position: relative;
}

#modalOfertaEspecial .modal-oferta-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #545454;
  opacity: 0.6;
  z-index: 10;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#modalOfertaEspecial .modal-oferta-header .close:hover {
  opacity: 1;
  background-color: #f0f0f0;
}

#modalOfertaEspecial .modal-oferta-body {
  padding: 0 2rem 2rem;
}

#modalOfertaEspecial .modal-oferta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff4841;
  margin-bottom: 1rem;
  line-height: 1.3;
}

#modalOfertaEspecial .modal-oferta-text {
  font-size: 1rem;
  color: #545454;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#modalOfertaEspecial .btn-garantir {
  font-size: 14px;
  padding: 12px 40px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
}

#modalOfertaEspecial .btn-garantir:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 72, 65, 0.3);
}

@media (max-width: 576px) {
  #modalOfertaEspecial .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }

  #modalOfertaEspecial .modal-oferta-body {
    padding: 0 1.5rem 1.5rem;
  }

  #modalOfertaEspecial .modal-oferta-title {
    font-size: 1.5rem;
  }

  #modalOfertaEspecial .modal-oferta-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  #modalOfertaEspecial .btn-garantir {
    font-size: 12px;
    padding: 10px 30px;
  }
}
/* formulário de contato */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lead-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.lead-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lead-form .form-group .form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  color: #111827;
  background-color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
}

.lead-form .form-group .form-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lead-form .form-group .form-input:hover {
  border-color: #d1d5db;
  background-color: #fafafa;
}

.lead-form .form-group .form-input:focus::placeholder {
  opacity: 0.5;
}

.lead-form .form-group .form-input:disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
  opacity: 0.6;
}

.lead-form .form-group .form-input:-webkit-autofill,
.lead-form .form-group .form-input:-webkit-autofill:hover,
.lead-form .form-group .form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #111827 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.lead-form .btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #ff4841;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 72, 65, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.lead-form .btn-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.lead-form .btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

.lead-form .btn-submit:hover {
  background: #a70600;
  box-shadow: 0 4px 12px rgba(255, 72, 65, 0.35);
  transform: translateY(-2px);
}

.lead-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 72, 65, 0.3);
}

.lead-form .btn-submit span {
  position: relative;
  z-index: 1;
}

.lead-form .btn-submit i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.lead-form .btn-submit:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .lead-form {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .lead-form .form-group label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .lead-form .form-group .form-input {
    padding: 0.875rem;
    font-size: 16px;
  }

  .lead-form .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead-form .form-group {
  animation: fadeInUp 0.4s ease-out;
  animation-fill-mode: both;
}

.lead-form .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* pagina de agradecimento */
#thank-you {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  min-height: 70vh;
}

#thank-you .row {
  margin: 0 !important;
}

.thank-you-content {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: #10b981;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01010d;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  width: 100%;
  max-width: 600px;
}

.thank-you-info p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.thank-you-info i {
  font-size: 1.1rem;
}

.thank-you-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.thank-you-actions .btn {
  min-width: 200px;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.thank-you-actions .btn i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  #thank-you {
    padding: 2rem 0;
    min-height: auto;
  }

  .thank-you-content {
    padding: 2rem 1.5rem;
  }

  .thank-you-icon {
    font-size: 4rem;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-message {
    font-size: 1rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    margin: 0;
  }
}

/*# sourceMappingURL=homePage.css.map */
