/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 235;
  --first-color: hsl(41, 100%, 60%);
  --first-color-alt: hsl(37deg, 75%, 40%);
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten: hsl(var(--hue), 24%, 92%);
  --title-color: hsl(var(--hue), 4%, 15%);
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --body-color: hsl(var(--hue), 100%, 97%);
  --container-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.125rem;
    --big-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --tiny-font-size: 0.625rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.4s; /*For animation dark mode*/
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
/*========== Button Dark/Light ==========*/
.change-theme {
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-dark: hsl(var(--hue), 8%, 20%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(var(--hue), 8%, 12%);
  --container-color: hsl(var(--hue), 8%, 16%);
}

/*========== Button Dark/Light ==========*/
.change-theme {
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

.dark-theme .steps__bg,
.dark-theme .questions {
  background-color: var(--first-color-dark);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe {
  background-color: var(--container-color);
}

.dark-theme .scroll-header {
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, 0.3);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

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

.container {
  max-width: 1068px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

.main {
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background: linear-gradient(
    135deg,
    hsl(213.75deg 80.38% 59.74%),
    hsl(210deg 100% 48.5%)
  );
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 40px 0;
}

.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--first-color);
}

.nav__logo {
  font-weight: 700;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  transition: 0.3s;
  letter-spacing: 0.1rem;
}

.nav__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__toggle {
  display: inline-flex;
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background: linear-gradient(
      135deg,
      hsl(213.75deg 80.38% 59.74%),
      hsl(210deg 100% 48.5%)
    );
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, 0.1);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: 0.3s;
    z-index: var(--z-fixed);
  }
}

.nav__close {
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link {
  color: hsl(234, 100%, 96%);
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.nav__link:hover {
  color: var(--first-color);
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 4px 9px hsla(var(--hue), 4%, 15%, 0.2);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--first-color);
}

.active-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  padding: 3.5rem 0 2rem;
}

.home__container {
  position: relative;
  row-gap: -2rem;
}

.home__img {
  width: 300px;
  justify-self: center;
}

.home__title {
  font-size: var(--big-font-size);
  line-height: 140%;
  margin-bottom: var(--mb-1);
}

.home__description {
  margin-bottom: var(--mb-2-5);
}

.home__social {
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow {
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--first-color);
  right: -45%;
  top: 50%;
}

.home__social-links {
  display: inline-flex;
  flex-direction: column;
  row-gap: 0.25rem;
}

.home__social-link {
  font-size: 1rem;
  color: var(--first-color);
  transition: 0.3s;
}

.home__social-link:hover {
  transform: translateX(0.25rem);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__icon {
  transition: 0.3s;
}

.button:hover .button__icon {
  transform: translateX(0.25rem);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}

.button--link {
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon {
  transform: translateX(0.25rem);
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 2rem;
}

.about__img {
  width: 280px;
  justify-self: center;
}

.about__title {
  margin-bottom: var(--mb-1);
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__details {
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.about__details-description {
  display: inline-flex;
  column-gap: 0.5rem;
  font-size: var(--small-font-size);
}

.about__details-icon {
  font-size: 1rem;
  color: var(--first-color);
  margin-top: 0.15rem;
}

/*=============== STEPS ===============*/
.steps__bg {
  background: linear-gradient(
    135deg,
    var(--first-color),
    var(--first-color-alt)
  );
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
}

.steps__container {
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title {
  color: #fff;
}

.steps__card {
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number {
  display: inline-block;
  background-color: hsl(210deg 100% 48.5%);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: 0.3s;
}

.steps__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.steps__card-description {
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number {
  transform: translateY(-0.25rem);
}

/*=============== PRODUCTS ===============*/
.product__description {
  text-align: center;
}

.product__container {
  padding: 3rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.product__card {
  display: grid;
  position: relative;
}

.product__img {
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: 0.3s;
}

.product__title,
.product__price {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title {
  margin-bottom: 0.25rem;
}

.product__button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #fff;
  padding: 0.25rem;
  border-radius: 0.35rem;
  font-size: 1.15rem;
}

.product__button:hover {
  background-color: var(--first-color-alt);
}

.product__circle {
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.product__card:hover .product__img {
  transform: translateY(-0.5rem);
}

/*=============== QUESTIONS ===============*/
.questions {
  background: url("../img/fundos/Reuniões/Reunião01.webp") center/cover
    no-repeat;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Cria novo contexto de empilhamento */
}

/* Overlay escuro para melhor contraste */
.questions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Ajuste a opacidade conforme necessário */
  z-index: -1;
}

/* Mantendo um toque do gradiente original */
.questions::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    hsla(213.75, 80%, 60%, 0.3),
    hsla(210, 100%, 48%, 0.3)
  );
  z-index: -1;
  mix-blend-mode: overlay;
  /* Efeito de mistura bonito */
}

.questions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    hsl(44.83deg 95.63% 32.28% / 54%) 0%,
    #dbd14442 50%
  );
  z-index: -1;
}

.questions__container {
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.questions__group {
  display: grid;
  row-gap: 1.5rem;
}

.questions__item {
  background-color: var(--container-color);
  border-radius: 0.25rem;
}

.questions__item-title {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.questions__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.questions__description {
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.questions__header {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
}

.questions__content {
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content {
  transition: 0.3s;
}

.questions__item:hover {
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, 0.15);
}

/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content {
  background-color: var(--first-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon {
  color: #fff;
}

.accordion-open .questions__icon {
  transform: rotate(45deg);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3.5rem;
}

.contact__data {
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-0-5);
}

.contact__description {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon {
  font-size: 1.25rem;
}

.contact__inputs {
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content {
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;

  color: var(--text-color);

  border: none;
  outline: none;
  z-index: 1;
}

.contact__label {
  position: absolute;
  top: 0.75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: 0.3s;
}

.contact__area {
  height: 7rem;
}

.contact__area textarea {
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus + .contact__label {
  top: -0.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus)
  + .contact__label {
  top: -0.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 3rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: 0.3s;
}

.footer__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover {
  color: var(--first-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer__subscribe {
  background-color: var(--first-color-lighten);
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  border-radius: 0.5rem;
}

.footer__input {
  width: 70%;
  padding: 0 0.5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button {
  padding: 1rem;
}

.footer__data {
  display: grid;
  row-gap: 0.75rem;
}

.footer__information {
  font-size: var(--small-font-size);
}

.footer__social {
  display: inline-flex;
  column-gap: 0.75rem;
}

.footer__social-link {
  font-size: 1rem;
  color: var(--text-color);
  transition: 0.3s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

.footer__cards {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}
.footer__card {
  width: 35px;
}

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}

/*=============== FLOATING BUTTONS ===============*/
.floating-buttons {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: var(--z-tooltip);
}

.floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0.9;
}

.floating-button:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
  background-color: #25d366;
  /* Cor do WhatsApp */
}

.whatsapp-button:hover {
  background-color: #128c7e;
  box-shadow: 0 0 15px 4px rgba(37, 211, 102, 0.5);
}

.instagram-button {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  /* Gradiente do Instagram */
}

.instagram-button:hover {
  box-shadow: 0 0 15px 4px rgba(225, 48, 108, 0.5);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--first-color);
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.25rem;
  z-index: var(--z-tooltip);
  opacity: 0.8;
  transition: 0.4s;
}

.scrollup__icon {
  font-size: 1.25rem;
  color: #fff;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 768px) {
  .floating-buttons {
    bottom: 5rem;
  }

  .floating-button {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .scrollup {
    padding: 0.4rem;
  }

  .show-scroll {
    bottom: 2.5rem;
  }
}
/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 768px) {
  .floating-buttons {
    bottom: 2.5rem;
    right: 0.5rem;
  }

  .floating-button {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

.scrollup__icon {
  font-size: 32px;
  color: #fff;
}

.scrollup:hover {
  background-color: hsl(117, 84%, 29%);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--hue), 4%, 29%);
  border-radius: 0.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img {
    width: 180px;
  }
  .home__title {
    font-size: var(--h1-font-size);
  }

  .steps__bg {
    padding: 2rem 1rem;
  }
  .steps__card {
    padding: 1.5rem;
  }

  .product__container {
    grid-template-columns: 0.6fr;
    justify-content: center;
  }
  .questions {
    padding: 2rem 0px 3rem;
  }
  .modal {
    padding: 4rem 0 1rem 0rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product__description {
    padding: 0 4rem;
  }
  .product__container {
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    column-gap: 5rem;
  }

  .footer__subscribe {
    width: 400px;
  }
  .questions {
    padding: 2rem 0px 10rem;
  }
  .modal {
    padding: 4rem 0 1rem 0rem;
  }
}

@media screen and (min-width: 767px) {
  .modal {
    padding: 4rem 0 1rem 0rem;
  }
  .questions {
    padding: 2rem 0px 10rem;
  }
  body {
    margin: 0;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__menu {
    margin-left: auto;
  }

  .home__container,
  .about__container,
  .questions__container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home {
    padding: 10rem 0 5rem;
  }
  .home__container {
    align-items: center;
  }
  .home__img {
    width: 280px;
    order: 1;
  }
  .home__social {
    top: 30%;
  }

  .questions__container {
    align-items: flex-start;
  }

  .footer__container {
    column-gap: 3rem;
  }
  .footer__subscribe {
    width: initial;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .questions {
    padding: 2rem 0px 45rem;
  }
  .modal {
    padding: 4rem 0 1rem 2rem;
  }
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 2rem 0px 5rem 2rem;
  }
  .section__title,
  .section__title-center {
    font-size: var(--h1-font-size);
  }

  .home {
    padding: 13rem 0 5rem;
  }
  .home__img {
    width: 750px;
  }
  .home__description {
    padding-right: 7rem;
  }

  .about__img {
    width: 380px;
  }

  .steps__container {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps__bg {
    padding: 3.5rem 2.5rem;
  }
  .steps__card-title {
    font-size: var(--normal-font-size);
  }

  .product__description {
    padding: 0 16rem;
  }
  .product__container {
    padding: 4rem 0;
    grid-template-columns: repeat(3, 185px);
    gap: 4rem 6rem;
  }
  .product__img {
    width: 160px;
  }
  .product__circle {
    width: 110px;
    height: 110px;
  }
  .product__title,
  .product__price {
    font-size: var(--normal-font-size);
  }

  .questions__container {
    padding: 1rem 0 4rem;
  }
  .questions__title {
    text-align: center;
  }
  .questions__group {
    row-gap: 2rem;
  }
  .questions__header {
    padding: 1rem;
  }
  .questions__description {
    padding: 0 3.5rem 2.25rem 2.75rem;
  }

  .footer__logo {
    font-size: var(--h3-font-size);
  }
  .footer__container {
    grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr;
  }
  .footer__copy {
    margin: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1200px) {
  .home__social {
    right: -3rem;
    row-gap: 4.5rem;
  }
  .home__social-follow {
    font-size: var(--small-font-size);
  }
  .home__social-follow::after {
    width: 1.5rem;
    right: -60%;
  }
  .home__social-link {
    font-size: 1.15rem;
  }

  .about__container {
    column-gap: 7rem;
  }

  .scrollup {
    right: 3rem;
  }
  .questions {
    padding: 2rem 0px 45rem;
  }

  .modal {
    padding: 4rem 0 1rem 2rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

.wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-top: 0rem;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item {
  width: 200px;
  height: 100px;
  border-radius: 6px;
  position: absolute;
  left: max(calc(200px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

/*  Cards  */

ul {
  list-style: none;
}

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

/*==================== CARD PRICING ====================*/
.card {
  padding: 3rem 0;
}

.card__container {
  gap: 3rem 1.25rem;
}

.card__content {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 24px hsla(var(--hue), 61%, 16%, 0.1);
  transition: 0.4s;
}

.card__content:hover {
  box-shadow: 0 16px 24px hsla(var(--hue), 61%, 16%, 0.15);
}

.card__header-img {
  width: 30px;
  height: 30px;
}

.card__header-circle {
  width: 40px;
  height: 40px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  margin-bottom: var(--mb-1);
  place-items: center;
}

.card__header-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  margin-bottom: var(--mb-0-25);
}

.card__header-title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.card__pricing {
  position: absolute;
  background: linear-gradient(
    180deg,
    var(--first-color-light) -50%,
    var(--first-color) 109%
  );
  width: 94px;
  height: 88px;
  right: 1.5rem;
  top: -1rem;
  padding-top: 1.25rem;
  text-align: center;
}

.card__pricing-number {
  font-family: var(--pricing-font);
}

.card__pricing-symbol {
  color: #ffffff;
}

.card__pricing-month {
  display: block;
  font-size: var(--tiny-font-size);
}

.card__pricing-number,
.card__pricing-month {
  color: #ffffff;
}

.card__pricing::after,
.card__pricing::before {
  content: "";
  position: absolute;
}

.card__pricing::after {
  width: 100%;
  height: 20px;
  background-color: var(--container-color);
  left: 0;
  bottom: -3px;
  clip-path: polygon(0 91%, 50% 0, 100% 91%);
}

.card__pricing::before {
  width: 14px;
  height: 16px;
  background-color: hsl(235deg 24% 66% / 64%);
  top: 0;
  left: -14px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.card__list {
  row-gap: 0.5rem;
  margin-bottom: var(--mb-2);
}

.card__list-item {
  display: flex;
  align-items: center;
}

.card__list-icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-right: var(--mb-0-5);
}

.card__button {
  padding: 1.25rem;
  border: none;
  font-size: var(--normal-font-size);
  border-radius: 0.5rem;
  background: linear-gradient(
    180deg,
    var(--first-color-light) -12%,
    var(--first-color) 109%
  );
  color: var(--white-color);
  cursor: pointer;
  transition: 0.4s;
}

.card__button:hover {
  box-shadow: 0 12px 24px hsla(var(--hue), 97%, 54%, 0.2);
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .card__content {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__content {
    grid-template-rows: repeat(2, max-content);
  }
  .card__button {
    align-self: flex-end;
  }
}

/* For large devices */
@media screen and (min-width: 968px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .card {
    height: 94vh;
    align-items: center;
  }
  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .card__header-circle {
    margin-bottom: var(--mb-1-25);
  }
  .card__header-subtitle {
    font-size: var(--small-font-size);
  }
}

/* Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: var(--z-fixed); /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: var(--container-color);
  margin: 1% auto; /* 10% from the top and centered */
  padding: var(--mb-2);
  border: 1px solid var(--first-color-light);
  width: 50%; /* Medium width for larger screens */
  max-width: 600px; /* Maximum width for larger screens */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.close {
  color: var(--text-color-light);
  float: right;
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}

.close:hover,
.close:focus {
  color: var(--first-color);
  text-decoration: none;
  cursor: pointer;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Space between form elements */
}

label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--first-color-light);
  border-radius: 8px;
  box-sizing: border-box; /* Ensure padding is included in width */
}

textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--first-color-light);
  border-radius: 8px;
  box-sizing: border-box; /* Ensure padding is included in width */
  resize: vertical; /* Allow vertical resizing only */
}

input[type="submit"] {
  background: linear-gradient(
    180deg,
    var(--first-color-light) -12%,
    var(--first-color) 109%
  );
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: var(--first-color-dark);
}

/* Responsividade */
@media (max-width: 768px) {
  .modal-content {
    width: 90%; /* Ajusta a largura para telas menores */
    margin: 5% auto; /* Ajusta a margem para telas menores */
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%; /* Largura total menos o padding */
    margin: 0; /* Remove a margem em telas muito pequenas */
    padding-left: 1rem; /* Padding à esquerda */
    padding-right: 1rem; /* Padding à direita */
  }
}

/* Estilos para o botão de envio */
.card__button {
  padding: 1.25rem;
  border: none;
  font-size: var(--normal-font-size);
  border-radius: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--first-color),
    var(--first-color-alt)
  );
  color: var(--container-color);
  cursor: pointer;
  transition: 0.4s;
  width: 100%; /* Ocupa toda a largura do modal */
}

.card__button:hover {
  box-shadow: 0 12px 24px hsla(var(--hue), 97%, 54%, 0.3);
}

/* Ajuste para o formulário */
form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--first-color-light);
  border-radius: 8px;
}

/* Estilos do Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal__content {
  background-color: var(--container-color);
  margin: 0% auto;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  position: relative;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--text-color-light);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.modal__close:hover {
  color: var(--first-color);
}

.modal__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.modal__title {
  color: var(--title-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal__subtitle {
  color: var(--text-color-light);
  font-size: 1rem;
}

.modal__pricing {
  text-align: center;
  margin: 1.5rem 0;
}

.modal__price {
  color: var(--first-color);
  font-size: 2.5rem;
  font-weight: bold;
}

.modal__month {
  color: var(--text-color-light);
  font-size: 1rem;
}

.modal__features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.modal__features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--first-color-lighten);
}

.modal__features i {
  color: var(--first-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.modal__button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--first-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.modal__button:hover {
  background: var(--first-color-alt);
}

/* Estilos para o modal aprimorado */
.modal__features-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.modal__features-title {
  color: var(--first-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.modal__features li {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--first-color-lighten);
}

.modal__features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-title {
  font-weight: bold;
  color: var(--title-color);
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-title i {
  margin-right: 0.5rem;
  color: var(--first-color);
}

.feature-description {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.8rem;
}

.modal__why-choose {
  background: var(--first-color-lighten);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal__why-choose-title {
  color: var(--first-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.modal__why-choose-text {
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}

.modal__actions {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.modal__button-primary {
  background: var(--first-color);
  color: white;
}

.modal__button-primary:hover {
  background: var(--first-color-alt);
}

.modal__button-secondary {
  background: transparent;
  color: var(--first-color);
  border: 1px solid var(--first-color);
}

.modal__button-secondary:hover {
  background: rgba(185, 123, 41, 0.1);
}

.modal__button i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.footer {
  background-color: var(
    --container-color
  ); /* Ou um tom escuro para contraste */
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  max-width: 960px;
  margin: 0 auto;
}

.footer__text {
  font-size: 0.95rem;
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.developer-credit {
  font-size: 0.85rem;
  color: var(--text-color-light);
}

.developer-credit a {
  color: var(--first-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: var(--first-color-alt);
  text-decoration: underline;
}

.mobile-break {
  display: none;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer__text {
    font-size: 0.9rem;
  }

  .developer-credit {
    font-size: 0.8rem;
  }

  .mobile-break {
    display: inline;
  }
}
/*=============== MODAL IMPROVEMENTS ===============*/
.modal-content {
  background-color: var(--container-color);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__content--small {
  max-width: 450px;
  text-align: center;
  padding: 2rem;
}

.modal__header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal__title {
  color: var(--first-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.modal__subtitle {
  color: var(--text-color-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--first-color-lighten);
  margin-bottom: 1.5rem;
  justify-content: center;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-color-light);
  cursor: pointer;
  position: relative;
  font-size: 0.95rem;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--first-color);
}

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

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

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

/* Form Groups */
.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--title-color);
  font-size: 0.95rem;
  font-weight: var(--font-medium);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--first-color-light);
  border-radius: 8px;
  background-color: var(--body-color);
  color: var(--text-color);
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

.form__group textarea {
  min-height: 120px;
  resize: vertical;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(var(--first-color), 0.1);
}

.form__group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

/* Confirmation Icon */
.confirmation-icon {
  font-size: 4rem;
  color: var(--first-color);
  margin-bottom: 1.5rem;
}

.confirmation-icon i {
  display: inline-block;
  animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

/* Footer Links */
.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-color-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
}

.footer__links a:hover {
  color: var(--first-color);
  background-color: rgba(var(--first-color), 0.1);
  text-decoration: none;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    margin: 10% auto;
  }
  
  .modal__title {
    font-size: 1.5rem;
  }
  
  .tabs {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .footer__links {
    gap: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .modal-content {
    width: 95%;
    padding: 1.25rem;
  }
  
  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Modal de Status (Confirmação/Erro) */
.modal-status {
  text-align: center;
  max-width: 450px;
  padding: 2rem;
}

.status-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.status-icon.success {
  color: #10b981; /* Verde */
}

.status-icon.error {
  color: #ef4444; /* Vermelho */
}

.modal-status h2 {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.modal-status p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.modal-status .modal__button {
  width: 100%;
  margin-top: 1rem;
}

/* Animação de entrada */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-status {
  animation: modalFadeIn 0.3s ease-out;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--container-color);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
  row-gap: 2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
  transition: color 0.3s ease;
}

.footer__link i {
  font-size: 1.2rem;
}

.footer__link:hover {
  color: var(--first-color);
  text-decoration: none;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__text {
  color: var(--text-color-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.developer-credit {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.developer-credit a {
  color: var(--first-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 576px) {
  .footer__links {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  
  .footer__info {
    align-items: center;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
  }
  
  .footer__links {
  }
  
  .footer__info {
    text-align: right;
  }
}


/* Grupo de consentimento */
.consent-group {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: rgba(var(--first-color), 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--first-color);
  transition: all 0.3s ease;
}

.consent-group:hover {
  background-color: rgba(var(--first-color), 0.1);
}

/* Checkbox moderno */
.modern-checkbox {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0.5rem;
}

.modern-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background-color: var(--body-color);
  border: 2px solid var(--first-color);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.modern-checkbox:hover input ~ .checkmark {
  background-color: var(--first-color-lighten);
}

.modern-checkbox input:checked ~ .checkmark {
  background-color: var(--first-color);
  border-color: var(--first-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.modern-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.modern-checkbox .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Texto do consentimento */
.consent-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-left: 0.5rem;
}

.consent-link {
  color: var(--first-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.consent-link:hover {
  color: var(--first-color-alt);
}

.consent-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--first-color);
  transition: width 0.3s ease;
}

.consent-link:hover::after {
  width: 100%;
}

/* Dica de consentimento */
.consent-hint {
  display: flex;
  align-items: center;
  color: var(--text-color-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding-left: 2rem;
}

.consent-hint i {
  margin-right: 0.5rem;
  color: var(--first-color);
  font-size: 1rem;
}

/* Efeito de foco para acessibilidade */
.modern-checkbox input:focus-visible ~ .checkmark {
  box-shadow: 0 0 0 3px rgba(var(--first-color), 0.3);
  outline: none;
}

/* Estado inválido (quando requerido e não marcado) */
.modern-checkbox input:invalid ~ .checkmark {
  border-color: #e74c3c;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .checkmark {
    background-color: var(--container-color);
  }
  
  .consent-group {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .consent-group:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}


/*=============== PARTNERS BUTTON ===============*/
.parteners__button-container {
  display: flex;
  justify-content: center;
  margin-top: var(--mb-2-5);
}

.button {
  display: inline-flex;
  align-items: center;
  background-color: var(--first-color);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.button:hover {
  background-color: var(--first-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.button__icon {
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.button:hover .button__icon {
  transform: translateX(5px);
}

/*=============== PARTNERS PAGE ===============*/
.partners-page {
  padding: 7rem 0 3rem;
}

.partners__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
  color: var(--text-color-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners__grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.partners__card {
  background: var(--container-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partners__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.partners__img-container {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.partners__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.partners__card:hover .partners__img {
  transform: scale(1.05);
}

.partners__data {
  padding: 1.5rem;
}

.partners__name {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
  color: var(--title-color);
}

.partners__description-card {
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1-5);
  color: var(--text-color-light);
}

.partners__button-container {
  text-align: right;
}

.button--small {
  padding: 0.75rem 1.25rem;
  font-size: var(--small-font-size);
}

/* Ícone de seta para canto */
.ri-arrow-right-up-line {
  font-size: 1rem;
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .partners__grid {
    grid-template-columns: 1fr;
  }

  .partners-page {
    padding: 5rem 0 2rem;
  }
}

/* Estilos específicos para o card Big Pizza */
.partners__logo-overlay {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: var(--container-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  border: 4px solid var(--body-color);
}

.partners__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.partners__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--mb-0-75);
}

.partners__rating {
  display: flex;
  align-items: center;
  background-color: var(--first-color-lighten);
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  color: var(--first-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.partners__rating i {
  color: #ffd700;
  margin-right: 0.25rem;
}

.partners__features {
  display: flex;
  gap: 1rem;
  margin: var(--mb-1) 0;
}

.partners__feature {
  display: flex;
  align-items: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.partners__feature i {
  margin-right: 0.25rem;
  color: var(--first-color);
}

/* Estilos específicos para o card Calhas Taquaral */
.partners__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--first-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--smaller-font-size);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.partners__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: var(--mb-1) 0;
}

.partners__contact-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--small-font-size);
  color: var(--first-color);
  transition: color 0.3s;
}

.partners__contact-link:hover {
  color: var(--first-color-alt);
}

.partners__contact-link i {
  font-size: 1rem;
}

/* Cores específicas para Calhas Taquaral */
.partners__card[style*="Calhas"] .partners__feature i {
  color: var(--first-color);
}

/* Estilos específicos para L'Barte em Fios */

.partners__craft-detail {
  width: 120%;
  opacity: 0.8;
}

.partners__social-links {
  display: flex;
  gap: 1rem;
  margin: var(--mb-1) 0;
}

.partners__social-link {
  color: var(--text-color-light);
  font-size: 1.25rem;
  transition: color 0.3s, transform 0.3s;
}

.partners__social-link:hover {
  color: #ff6b6b;
  transform: translateY(-3px);
}

/* Efeito especial para o card de artesanato */
.partners__card:hover .partners__craft-overlay {
  height: 40px;
  transition: height 0.3s ease;
}

/* Estilos específicos para o card da dentista */
.partners__professional-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #3b82f6;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--tiny-font-size);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partners__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: var(--mb-1) 0;
}

.partners__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: color 0.3s;
}

.partners__contact-link:hover {
  color: #3b82f6;
}

.partners__contact-link i {
  font-size: 1rem;
  color: #3b82f6;
}

/* Efeito de destaque para a área de saúde */
.partners__tag[style*="background-color: #3B82F6"] {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
