/* TipsBet - estilos do HTML fornecido */
@import url("../webfonts/font-family-montserrat.css");
@import url("../webfonts/font-family-lato.css");
@import url("../css/vendor/bootstrap.min.css");
@import url("../css/vendor/fontawesome.css");
@import url("../css/vendor/brands.css");
@import url("../css/vendor/solid.css");
@import url("../css/vendor/animate.min.css");

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }

  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}

:root {
  --primary: #272727;
  --secondary: #ffffff;
  --text-color: #5f5f5f;
  --accent-color: #000000;
  --accent-color-2: #c6ef2e;
  --accent-color-3: #f2f2f2;
  --accent-color-4: #fafafa;
  --accent-color-5: #e4e4e4;
  --accent-color-6: #eaff9d;
  --accent-color-7: #d0d0d0;
  --accent-color-8: #c9c1c1;
  --accent-color-9: #8c8c8c14;
  --accent-transparent-white: #ffffff00;
  --accent-transparent-white-2: #ffffff14;
  --accent-transparent-black: #0000005c;
  --accent-transparent-black-2: #00000087;
  --font-family-1: "Montserrat", sans-serif;
  --font-family-2: "Lato", sans-serif;
  --animation-normal: 1.25s;
  --animation-slow: 2.25s;
  --animation-fast: 0.75s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-2);
  color: var(--primary);
  font-size: 16px;
}

h1 {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1em;
}

h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2em;
}

h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3em;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3em;
}

h5 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3em;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-1);
  margin-bottom: 0;
}

p {
  color: var(--text-color);
  font-family: var(--font-family-2);
  font-size: 18px;
  margin-bottom: 20px;
}

button,
a,
.btn-title {
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section {
  padding: 120px 20px 120px 20px;
}

.section-wrapper {
  padding: 30px 30px 30px 30px;
}

.hero-container {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  max-width: 100%;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  border-radius: 100px 100px 100px 100px;
  padding: 5px 5px 5px 5px;
  justify-content: space-between;
}

.btn-accent {
  fill: var(--accent-color-2);
  transition: all 600ms;
  background-color: var(--accent-color-2);
}

.btn-accent:hover {
  background-color: var(--accent-color-6);
}

.btn-title {
  padding: 17px 17px 17px 17px;
  color: var(--accent-color);
}

.banner-reviewer-container {
  display: block;
}

.card {
  border: none;
  border-radius: 20px 20px 20px 20px;
}

.card-banner-reviewer {
  background-color: var(--accent-transparent-white-2);
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  text-align: center;
  gap: 10px 10px;
  border-radius: 20px 20px 20px 20px;
  padding: 10px 10px 10px 10px;
  order: 2;
  position: relative;
  z-index: 1;
}

.card-banner-reviewer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border-radius: inherit;
  background-color: inherit;
  z-index: -1;
}

.card-banner-reviewer .banner-reviewer-container {
  background-color: var(--accent-color-6);
  border-radius: 135px 135px 135px 135px;
}

.card-banner-reviewer .banner-avatar {
  width: 40px;
  min-height: 40px;
  border: 5px solid var(--accent-color-6);
  border-radius: 1000px 1000px 1000px 1000px;
}

.card.banner-home-community {
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  background-color: var(--accent-transparent-white-2);
  padding: 8px 20px 8px 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: auto;
  align-self: flex-start;
  max-height: none;
}

.card.banner-home-community::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border-radius: inherit;
  background-color: inherit;
  z-index: -1;
}

.card-service {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-accent-color {
  background-color: var(--accent-color);
}

.secondary-accent {
  color: var(--secondary) !important;
}

.accent-color-2 {
  color: var(--accent-color-2);
}

.image-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.image-container img:not(.banner-avatar) {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
}

.home-community-img {
  width: 42%;
}

.home-community-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center center;
  border-radius: 17px 17px 17px 17px;
}

.service-img {
  width: 100%;
  height: 430px !important;
  transform: scale(1);
  filter: brightness(0.86) contrast(1.04) saturate(0.96);
  transition:
    transform 300ms,
    filter 300ms;
}

.service-img:hover {
  transform: scale(1.06);
  filter: brightness(0.82) contrast(1.05) saturate(0.96);
}

.banner-home-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 110px 20px 120px 20px;
  border-radius: 30px 30px 30px 30px;
}

.banner-home-top {
  display: flex;
  flex-direction: row;
  gap: 100px 100px;
  justify-content: space-between;
}

.banner-home-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 100px 100px;
}

.banner-home-community-container {
  display: flex;
  flex-direction: column;
  width: 45%;
  height: auto;
}

.home-community-content {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-community-highlight {
  color: var(--accent-color-2);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3em;
}

.banner-home-cta-container {
  width: 42%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.banner-home-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slideshow-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("../images/banner-4.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px 0px;
  align-items: stretch;
}

.banner-avatar {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  min-height: 50px;
  border-radius: 1000px 1000px 1000px 1000px;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.banner-avatar:not(:nth-child(1)) {
  margin-left: -15px;
}

.banner-avatar-plus {
  background-color: var(--accent-color-2);
}

.banner-avatar-plus img {
  width: 80%;
}

.reviewer-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  color: var(--accent-color-4);
}

.banner-home-title {
  width: 54%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-home-title h1 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.banner-home-network {
  width: 47%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: center;
}

.banner-home-social {
  align-self: center;
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  order: 1;
}

.banner-home-social .social-container {
  position: relative;
  background-color: var(--accent-transparent-white-2);
  padding: 2px 14px 2px 14px;
  border-radius: 100px 100px 100px 100px;
  color: var(--secondary);
  z-index: 1;
  width: max-content;
  min-width: 0;
  box-sizing: border-box;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  align-items: center;
}

.banner-home-social .social-container i {
  color: var(--accent-color-2);
}

.banner-home-social .social-link-banner {
  color: var(--secondary);
  font-family: var(--font-family-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  transition: all 0.3s;
}

.banner-home-social .social-link-banner:hover {
  color: var(--accent-color-2);
}

.sub-heading {
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  color: var(--primary);
  background-color: var(--accent-color-3);
  padding: 7px 14px 7px 14px;
  border-radius: 100px 100px;
}

.sub-heading-banner {
  background-color: var(--accent-transparent-white-2);
  color: var(--accent-color-2);
}

.sub-heading-title {
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
}

.form label {
  font-family: var(--font-family-2);
  font-size: 16px;
  color: var(--accent-color-2);
}

.form input,
.form textarea {
  font-family: var(--font-family-2);
  font-size: 16px;
  line-height: 1.3em;
  padding: 17px 17px 17px 17px;
  border-radius: 10px 10px 10px 10px;
  background-color: var(--primary);
  color: var(--secondary);
  box-shadow: none;
  border: none;
  outline: none;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-color);
}

.form input#newsletter {
  border-radius: 100px 100px 100px 100px;
}

.alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  border-radius: 6px;
  margin-bottom: 15px;
}

.success {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: var(--secondary);
  color: var(--primary);
}

.success span,
.success p {
  color: var(--primary);
}

.error {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: var(--secondary);
  color: var(--primary);
}

.error span,
.error p {
  color: var(--primary);
}

.check-icon,
.cross-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.hidden {
  display: none;
}

.navbar-container {
  padding: 60px 60px 0px 60px;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 3;
}

.navbar {
  background-color: var(--accent-transparent-white-2);
  border-radius: 20px 20px 20px 20px;
  position: relative;
  padding: 0px;
  z-index: 1;
}

.navbar::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: inherit;
  background-color: inherit;
  z-index: -1;
}

.navbar-nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px 20px 20px;
}

.navbar .logo-container {
  width: 18%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar .logo-container img {
  width: 100%;
}

.navbar .nav-link-container {
  width: 64%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-link {
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  color: var(--secondary);
  padding: 0px 15px 0px 15px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--accent-color-2) !important;
}

.dropdown-menu {
  background-color: var(--secondary);
  border-radius: 0;
  border: none;
  padding: 0;
  overflow: hidden;
  margin-top: 1.125em !important;
  border-radius: 0px 0px 20px 20px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(45, 45, 45, 0.2);
  box-shadow: 0 10px 30px 0 rgba(45, 45, 45, 0.2);
}

.dropdown-item {
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  color: var(--accent-color);
  transition: all 300ms;
  padding: 15px 15px 15px 15px;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--secondary);
  color: var(--text-color);
}

.dropdown-toggle::after {
  display: none !important;
}

.navbar-cta-container {
  width: 18%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.nav-btn {
  display: none;
  padding: 8px 16px;
  background-color: var(--accent-color-2);
  color: var(--accent-color);
  box-shadow: none;
  transition: all 300ms ease;
  border: none;
  border-radius: 8px 8px 8px 8px;
  box-shadow: none;
  font-size: 18px;
}

.nav-btn:hover {
  background-color: var(--accent-color-6);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--accent-transparent-black-2);
  transition: left 0.4s ease-in-out;
  z-index: 10;
}

.sidebar-overlay.active {
  left: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--secondary);
  color: var(--accent-color);
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  max-height: 100vh;
  padding: 0px 16px 0px 5px;
}

.sidebar.active {
  transform: translateX(300px);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 20px;
}

.sidebar-header .logo {
  width: 75%;
}

.close-btn {
  display: inline-block;
  justify-content: center;
  background-color: var(--accent-color-2);
  border-radius: 8px 8px 8px 8px;
  color: var(--accent-color);
  font-weight: 600;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 18px;
  transition: all 300ms;
  border: none;
  outline: none;
}

.close-btn:hover {
  background-color: var(--accent-color-6);
  color: var(--accent-color);
}

.menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu li {
  padding: 10px 15px 10px 15px;
}

.menu a {
  color: var(--accent-color);
  text-decoration: none;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0px;
}

.menu a:hover,
.menu a.active {
  color: var(--accent-color-2);
}

.sidebar-dropdown .dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-dropdown-btn {
  background: none;
  border: 1px solid var(--accent-color-2);
  color: var(--accent-color-2);
  font-size: 1rem;
  cursor: pointer;
  padding: 3px 15px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.sidebar-dropdown-btn:hover {
  color: var(--accent-color-6);
  border: 1px solid var(--accent-color-6);
}

.sidebar-dropdown-menu {
  list-style: none;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  padding-top: 0;
  padding-bottom: 0;
}

.sidebar-dropdown-menu.active {
  max-height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.below-dropdown {
  transition: margin-top 0.1s ease-in-out;
  margin-top: 0px;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 5px;
}

.icon-circle {
  position: relative;
  background-color: var(--accent-color);
  font-size: 24px;
  border: 1px solid var(--accent-color-2);
  color: var(--accent-color-2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 300ms ease-in-out;
}

.icon-circle:hover {
  transform: rotateZ(0deg);
}

.service-icon {
  align-self: center;
  background-color: var(--accent-color-2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  color: var(--accent-color);
  font-size: 28px;
  line-height: 1;
  border-radius: 17px 17px 17px 17px;
}

.service-icon i {
  display: block;
}

.service-icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 0px 0px 20px;
  z-index: 1;
}

.social-icon {
  border-radius: 9px 9px 9px 9px;
  font-size: 14px;
  padding: 0.5em;
  background-color: var(--accent-color-2);
  color: var(--accent-color);
  transition: all 300ms;
}

.social-icon:hover {
  transform: translateY(-8px);
  background-color: var(--accent-color-6);
}

.contact-icon {
  width: 50px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px 15px 15px 15px;
  background-color: var(--accent-color-2);
}

.contact-icon.footer-icon {
  border-radius: 50%;
}

.contact-info-heading {
  color: var(--text-color);
}

.underline-primary-accent {
  border-bottom: 1px solid var(--primary);
}

.chevron-list {
  list-style: none;
  padding-left: 0;
}

.chevron-list li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1em;
  margin-bottom: 15px;
  color: var(--secondary);
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
}

.chevron-list a {
  color: var(--secondary);
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
}

.chevron-list li:last-child {
  margin-bottom: 0px;
}

.chevron-list li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color-2);
  margin-right: 0.5em;
  font-size: 16px;
  display: inline-block;
}

.service-title-container {
  padding-bottom: 30px;
  border-bottom: 3px solid var(--accent-color-2);
}

.service-intro {
  gap: 16px;
}

.service-intro p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

.service-detail-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 10px 10px 10px 10px;
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
  z-index: 0;
}

.service-detail-container::before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.92) 100%
  );
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-detail {
  padding: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  align-self: stretch;
  justify-content: space-between;
  gap: 16px;
  min-height: 192px;
  background-color: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  position: relative;
  z-index: 0;
}

.service-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}

.service-kicker {
  color: var(--accent-color-2);
  font-family: var(--font-family-1);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.75);
}

.service-description {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.service-copy h4,
.service-action-label {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.service-action-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
}

.service-action-link:hover {
  color: var(--accent-color-2);
}

.service-action-label {
  font-family: var(--font-family-1);
  font-size: 12px;
  font-weight: 700;
}

.service-detail::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: inherit;
  border-radius: inherit;
  z-index: -1;
}

.request-loader {
  position: relative;
  width: 60px;
  min-height: 60px;
  border-radius: 50% !important;
  border: none;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color-2);
  border: 1px solid var(--accent-color-2);
  font-size: 24px;
  transition: all 300ms ease-in-out;
  z-index: 10;
}

.request-loader:hover {
  color: var(--accent-color);
  background-color: var(--accent-color-2);
}

.request-loader::after,
.request-loader::before {
  opacity: 0.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  color: var(--accent-color-2);
  border: 4px solid currentColor;
  border-radius: 50%;
  animation-name: ripple;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.request-loader::after {
  animation-delay: 0.5s;
  animation-duration: 3s;
}

.request-loader::before {
  animation-delay: 0.2s;
  animation-duration: 3s;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-transparent-black-2);
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.my-modal {
  background-color: var(--secondary);
  padding: 0;
  border-radius: none;
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.my-modal iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 80vh;
}

.my-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: var(--font-size-3xl);
  cursor: pointer;
  font-weight: bold;
  color: var(--accent-color-2);
}

.animate-box {
  opacity: 0;
}

.animated {
  animation-duration: var(--animation-normal);
}

.animated-delay-fast {
  animation-duration: var(--animation-fast);
}

.animated-delay-slow {
  animation-duration: var(--animation-slow);
}

.gspace-1 {
  gap: 10px 10px;
}

.gspace-2 {
  gap: 20px 20px;
}

.gspace-5 {
  gap: 50px 50px;
}

.grid-spacer-2 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.footer-content-container {
  display: flex;
  flex-direction: column;
  gap: 120px 0px;
}

.footer-logo-container {
  display: flex;
  justify-content: start;
  align-items: flex-start;
}

.footer-logo-container img {
  width: 75%;
}

.footer-social-icon {
  display: flex;
  flex-direction: row;
  gap: 10px 10px;
  align-items: center;
}

.footer-social-icon .social-icon {
  border-radius: 50%;
}

.footer-email-wrap {
  min-width: 0;
}

.footer-contact-link {
  color: var(--secondary);
  font-family: var(--font-family-1);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 300ms;
}

.footer-contact-link:hover {
  color: var(--accent-color-2);
}

.footer-copyright-container {
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  justify-content: space-between;
  padding: 30px 0px 30px 0px;
  border-top: 1px solid var(--primary);
}

.footer-legalink-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 20px;
}

.footer-legalink-container .divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: var(--primary);
}

.legalink {
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--accent-color-2);
  transition: all 300ms;
}

.legalink:hover {
  color: var(--secondary);
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 20px;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: background-color 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-btn i {
  font-size: 30px;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.whatsapp-btn {
  animation: moveUpDown 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background-color: #25d366;
}

/* SeÃ§Ã£o curta de direcionamento */
.clarity-section {
  padding-top: 20px;
  background-color: var(--accent-color-3);
}

.clarity-card {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid var(--accent-transparent-white-2);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(198, 239, 46, 0.16),
      transparent 32%
    ),
    var(--accent-color);
}

.clarity-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.sub-heading-dark {
  color: var(--secondary);
  background-color: var(--accent-transparent-white-2);
}

.clarity-content h2 {
  max-width: 900px;
}

.clarity-content > p {
  max-width: 780px;
  margin: 0;
  color: var(--accent-color-7);
}

.clarity-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.clarity-tags span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(198, 239, 46, 0.35);
  border-radius: 100px;
  background-color: var(--accent-transparent-white-2);
  color: var(--secondary);
  font-family: var(--font-family-1);
  font-size: 14px;
  font-weight: 600;
}

.clarity-tags i {
  color: var(--accent-color-2);
}

@media (max-width: 991px) {
  .service-intro p {
    text-align: center;
  }

  .clarity-card {
    padding: 55px 40px;
  }
}

@media (max-width: 767px) {
  .banner-home-title h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .clarity-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .clarity-card {
    padding: 45px 25px;
  }

  .clarity-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .service-detail {
    min-height: 0;
    padding: 17px;
  }

  .service-description {
    font-size: 14px;
  }

  .service-action-label {
    display: none;
  }

  .clarity-content h2 {
    font-size: 32px;
  }

  .clarity-tags {
    flex-direction: column;
    align-items: flex-start;
  }
}
