:root {
  --primary-orange: #ff8c42;
  --primary-navy: #2e3b5c;
  --secondary-orange: #ffb366;
  --accent-blue: #4a90e2;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(46, 59, 92, 0.1);
  --shadow-hover: 0 15px 40px rgba(46, 59, 92, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --discount-green-light: #3dd27f;
  --discount-green: #25b165;
  --discount-green-dark: #0f6b3f;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--primary-navy);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}
.loader {
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--primary-orange);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-text {
  text-align: center;
  color: var(--primary-navy);
  font-weight: 500;
}
.asdfasda {
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: 2rem auto;
}
.sad-face img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.message {
  font-size: 1.1rem;
  line-height: 1.6;
}
.flag-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.flag-container img {
  width: 30px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.flag-container img:hover {
  transform: scale(1.1);
  border-color: var(--primary-orange);
}
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}
#popupp {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: fit-content !important;
  max-width: 100% !important;
  background: var(--primary-orange) !important;
  color: #fff !important;
  padding: 10px 30px !important;
  text-align: center !important;
  z-index: 1001 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-orange);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
}
#scroll-to-top:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.a100 {
  position: relative;
  min-height: 100vh;
  padding: 2rem 0;
  width: 100%;
  overflow: hidden;
}
.topo {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.titulo {
  text-align: center;
  margin: 0.5rem 0;
}
.titulo h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--primary-navy);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.menus {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 140, 66, 0.2);
}
.menus1 .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
  margin: 0;
}
.col-md-6,
.col-lg-3 {
  display: flex;
  flex-direction: column;
}
.field-icon-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.field-icon-wrap .form-control.date-input {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 45px 10px 12px;
  font-size: 20px;
  transition: var(--transition);
  background: #f8f9fa;
  width: 100%;
  position: relative;
  z-index: 1;
}
.field-icon-wrap .form-control.date-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
  background: #fff;
  outline: none;
}
.field-icon-wrap .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.calendar-icon {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.7;
  filter: brightness(0.8) saturate(1.1);
}
.date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  cursor: pointer;
  z-index: 3;
}
.date-input::-webkit-datetime-edit-text,
.date-input::-webkit-datetime-edit-month-field,
.date-input::-webkit-datetime-edit-day-field,
.date-input::-webkit-datetime-edit-year-field {
  color: var(--primary-navy);
  font-weight: 500;
}
.form-control:not(.date-input) {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 20px;
  transition: var(--transition);
  background: #f8f9fa;
  width: 100%;
}
.form-control:not(.date-input):focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
  background: #fff;
  outline: none;
}
.font-weight-bold {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  font-weight: bold;
}
.entradaw,
.saidaw {
  font-size: 15px;
  color: var(--medium-gray);
  display: block;
  margin-bottom: 0.3rem;
}
#contador {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#maiores {
  text-align: center;
  width: 100%;
}
#pessoasq {
  margin-bottom: 5px !important;
}
#label-id {
  font-size: 1rem;
  color: var(--medium-gray);
  display: block;
  margin-bottom: 0.6rem;
}
#selector {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
#selector input[type="button"] {
  background: var(--primary-orange);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}
#selector input[type="button"]:hover {
  background: var(--secondary-orange);
  transform: scale(1.1);
}
#counter {
  background: #fff;
  border: 2px solid var(--primary-orange);
  border-radius: 8px;
  width: 55px;
  height: 38px;
  text-align: center;
  font-weight: bold;
  color: var(--primary-navy);
}
#di12i {
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid var(--primary-orange);
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 8px;
  text-align: center;
}
#di12i h3 {
  color: var(--primary-navy);
  font-size: 0.85rem;
  margin: 0;
  display: inline;
}
#dii {
  color: var(--primary-orange);
  font-weight: bold;
  margin-left: 5px;
}
.alerta {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}
#diii {
  display: none !important;
}
.menus2 {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  display: none;
}
.a {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.a th {
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  color: #fff;
  padding: 12px;
  font-weight: 600;
  text-align: center;
}
.a td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  font-weight: bold;
}
.a tr {
  background: #fff !important;
}
.pp {
  color: var(--primary-blue);
  font-weight: 700;
}
.btn-block-title {
  text-align: center;
  padding: 3rem 0 1.5rem;
  background: #fff;
  margin: 1.5rem 0;
}
.btn-block-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}
.btn-block-title h3 {
  color: var(--medium-gray);
  font-weight: 400;
  font-size: 1.2rem;
}
.btn-block-kitnets,
.btn-block-1-Quarto,
.btn-block-Cobertura,
.btn-block-2-Quarto {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 20px;
}
.btn-block-kitnets h1,
.btn-block-1-Quarto h1,
.btn-block-Cobertura h1,
.btn-block-2-Quarto h1 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1.8rem;
  position: relative;
}
.btn-block-kitnets h1:after,
.btn-block-1-Quarto h1:after,
.btn-block-Cobertura h1:after,
.btn-block-2-Quarto h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-orange);
}
.btn-block-aps-kitnets,
.btn-block-aps-1-Quarto,
.btn-block-aps-Cobertura,
.btn-block-aps-2-Quarto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 1.8rem;
}
[class*="btn-ap-"] {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
[class*="btn-ap-"]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-orange);
}
[class*="btn-ap-"] [class*="part-1"] {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: #fff;
  padding: 1rem;
  text-align: center;
}
[class*="btn-ap-"] [class*="part-1"] h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
[class*="btn-ap-"] [class*="part-2"] {
  height: 200px;
  overflow: hidden;
}
[class*="btn-ap-"] [class*="part-2"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
[class*="btn-ap-"]:hover [class*="part-2"] img {
  transform: scale(1.05);
}
footer {
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.footer-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-orange);
}
.footer-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-bottom: 2rem;
}
.socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.socials li a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}
.socials li a img {
  transition: var(--transition);
}
.socials li a:hover img {
  transform: scale(1.1);
}
.footer-menu {
  margin-bottom: 2rem;
}
.f-menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
.f-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 25px;
}
.f-menu li a:hover {
  background: var(--primary-orange);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom a {
  color: var(--secondary-orange);
  text-decoration: none;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menus,
[class*="btn-ap-"],
.btn-block-title {
  animation: fadeInUp 0.6s ease-out;
}
@media (max-width: 992px) {
  .menus1 .row {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  #contador {
    grid-column: 1/-1;
    margin-top: 0.8rem;
  }
  .logo-tabela {
    width: 65%;
  }
  .a100 {
    min-height: 100vh;
  }
}
@media (max-width: 768px) {
  .field-icon-wrap .icon {
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .calendar-icon {
    width: 16px;
    height: 16px;
  }
  .field-icon-wrap .form-control.date-input {
    padding: 8px 35px 8px 10px;
    font-size: 0.9rem;
  }
  .date-input::-webkit-calendar-picker-indicator {
    width: 30px;
  }
  .titulo h1 {
    font-size: 2.5rem;
  }
  .menus {
    padding: 1rem;
    margin-bottom: 1rem;
    margin-left: 10px;
    margin-right: 10px;
  }
  .menus1 .row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #contador {
    grid-column: 1;
    margin-top: 0;
  }
  .font-weight-bold {
    margin-bottom: 0.2rem;
  }
  .entradaw,
  .saidaw {
    margin-bottom: 0.2rem;
    font-size: 0.85rem;
  }
  #label-id {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
  }
  .form-control:not(.date-input) {
    padding: 8px 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .topo {
    padding: 0 10px;
  }
  .background-image {
    height: 100vh;
    object-position: center center;
  }
  .btn-block-title {
    padding: 2rem 0 1rem;
    margin: 1rem 0;
  }
  .btn-block-title h1 {
    font-size: 2rem;
  }
  .btn-block-kitnets,
  .btn-block-1-Quarto,
  .btn-block-Cobertura,
  .btn-block-2-Quarto {
    margin: 2rem auto;
  }
  .btn-block-kitnets h1,
  .btn-block-1-Quarto h1,
  .btn-block-Cobertura h1,
  .btn-block-2-Quarto h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .flag-container {
    top: 10px;
    right: 10px;
    padding: 8px;
  }
  .f-menu {
    flex-direction: column;
    gap: 1rem;
  }
  .socials {
    gap: 0.5rem;
  }
  .btn-block-aps-kitnets,
  .btn-block-aps-1-Quarto,
  .btn-block-aps-Cobertura,
  .btn-block-aps-2-Quarto {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #selector {
    gap: 8px;
  }
  #selector input[type="button"] {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  #counter {
    width: 45px;
    height: 32px;
    font-size: 0.9rem;
  }
  .a th {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
  .a td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
  .logo-tabela {
    width: 80%;
  }
  .background-image {
    object-position: center center;
  }
  .a100 {
    min-height: 100vh;
  }
}
@media (max-width: 480px) {
  .field-icon-wrap .icon {
    right: 8px;
    width: 18px;
    height: 18px;
  }
  .calendar-icon {
    width: 14px;
    height: 14px;
  }
  .field-icon-wrap .form-control.date-input {
    padding: 6px 30px 6px 8px;
    font-size: 0.85rem;
  }
  .date-input::-webkit-calendar-picker-indicator {
    width: 25px;
  }
  .titulo h1 {
    font-size: 2rem;
  }
  .menus {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    margin-left: 8px;
    margin-right: 8px;
  }
  .menus1 .row {
    gap: 0.75rem;
  }
  .font-weight-bold {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
  }
  .entradaw,
  .saidaw {
    margin-bottom: 0.15rem;
    font-size: 0.8rem;
  }
  #label-id {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
  }
  .form-control:not(.date-input) {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
  .topo {
    padding: 0 8px;
  }
  .btn-block-title {
    padding: 1.5rem 0 0.75rem;
  }
  .btn-block-title h1 {
    font-size: 1.8rem;
  }
  .btn-block-kitnets,
  .btn-block-1-Quarto,
  .btn-block-Cobertura,
  .btn-block-2-Quarto {
    margin: 1.5rem auto;
  }
  .btn-block-kitnets h1,
  .btn-block-1-Quarto h1,
  .btn-block-Cobertura h1,
  .btn-block-2-Quarto h1 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .footer-content {
    padding: 0 15px;
  }
  .footer-content h3 {
    font-size: 1.5rem;
  }
  .footer-content p {
    font-size: 1rem;
  }
  footer {
    margin-top: 2rem;
  }
  #selector {
    gap: 6px;
  }
  #selector input[type="button"] {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  #counter {
    width: 40px;
    height: 30px;
    font-size: 0.85rem;
  }
  .a th {
    padding: 8px 6px;
    font-size: 0.85rem;
  }
  .a td {
    padding: 8px 6px;
    font-size: 0.85rem;
  }
  .logo-tabela {
    width: 90%;
  }
  .a100 {
    min-height: 95vh;
  }
}
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
button:focus,
input:focus,
a:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.6);
  }
}
.background-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.logo-tabela {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 50%;
  opacity: 0.15;
}
@media (max-width: 768px) {
  .logo-tabela {
    width: 70% !important;
    opacity: 0.1 !important;
  }
  .me > div > div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-align: center !important;
  }
  .me > div > div[style*="display: flex"] p {
    margin: 0 !important;
    width: 100% !important;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s;
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.subtituloDesc {
  text-align: center;
  margin: 30px 0 20px 0;
  position: relative;
  z-index: 10;
}
.subtituloDesc h4 {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--discount-green-dark),
    var(--discount-green-light)
  );
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transform: translateY(35px);
}
.subtituloDesc::before {
  display: none !important;
}
.table-container {
  position: relative;
  margin-top: 60px;
}
.table-container::after {
  content: "";
  position: absolute;
  top: -25px;
  height: 8px;
  background: linear-gradient(
    135deg,
    var(--discount-green-dark),
    var(--discount-green-light)
  );
  border-radius: 3px;
  z-index: 3;
  left: 0;
  right: 0;
}
#tabelaDesconto .b th {
  background: linear-gradient(
    135deg,
    var(--discount-green-dark),
    var(--discount-green-light)
  );
  color: #fff;
  padding: 12px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
#tabelaDesconto {
  border: 2px solid var(--discount-green);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
  width: 100%;
  border-collapse: collapse;
}
.connector-line {
  position: absolute;
  top: -25px;
  width: 8px;
  height: 27px;
  background: linear-gradient(
    180deg,
    var(--discount-green),
    var(--discount-green-light)
  );
  border-radius: 3px 3px 0 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
@media (max-width: 768px) {
  .subtituloDesc {
    margin: 20px 0 15px 0;
  }
  .subtituloDesc h4 {
    font-size: 0.9em;
    padding: 8px 20px;
    transform: translateY(25px);
  }
  .subtituloDesc::after {
    bottom: -25px;
    height: 25px;
    z-index: 1;
  }
  .table-container {
    margin-top: 50px;
  }
  .table-container::before {
    top: -50px;
    height: 30px;
  }
  .table-container::after {
    top: -20px;
    height: 8px;
    z-index: 3;
  }
  .connector-line {
    height: 22px;
    width: 8px;
    top: -20px;
    z-index: 2;
  }
}
@media (max-width: 480px) {
  .subtituloDesc {
    margin: 15px 0 10px 0;
  }
  .subtituloDesc h4 {
    font-size: 0.8em;
    padding: 6px 15px;
    transform: translateY(25px);
    white-space: nowrap;
  }
  .subtituloDesc::after {
    bottom: -20px;
    height: 20px;
    z-index: 1;
  }
  .table-container {
    margin-top: 40px;
  }
  .table-container::before {
    top: -40px;
    height: 25px;
    width: 2px;
  }
  .table-container::after {
    top: -15px;
    height: 8px;
    z-index: 3;
  }
  .connector-line {
    height: 17px;
    width: 8px;
    top: -15px;
    z-index: 2;
  }
}
