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

*::-moz-selection {
  background: var(--primary-color-light);
}

*::selection {
  background: var(--primary-color-light);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "DM Sans", sans-serif;
  line-height: 58px;
  font-weight: 700;
}

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

button,
a {
  cursor: pointer;
}

ul {
  list-style: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.button {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  padding: 12px 32px;
  text-transform: uppercase;
  border: 0;
  color: var(--gray-color-000);
  background: var(--gradient);
  border-radius: 8px;
  transition: all 0.3s;
}
.button.secondary {
  background: var(--gray-color-000);
  text-align: center;
}
.button.secondary span {
  background: linear-gradient(114deg, #3777F4 -4.38%, #1B2A4C 105.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.button:hover {
  transform: scale(1.08);
}

.logo {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
  background: linear-gradient(114deg, #3777F4 -4.38%, #1B2A4C 105.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.logo.white {
  color: var(--gray-color-000);
  background: transparent;
  -webkit-text-fill-color: initial;
}

.container {
  padding: 16px;
  max-width: 1247px;
  width: 100%;
  margin: 0 auto;
}

.icon {
  height: 8rem;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color-light);
  border-radius: 16px;
  transition: all 0.2s ease-out;
}
.icon svg {
  width: 4.8rem;
  height: 4.8rem;
}
.icon:hover {
  transform: scale(1.08);
}
@media screen and (max-width: 960px) {
  .icon {
    height: 6.4rem;
    width: 6.4rem;
  }
  .icon svg {
    width: 4rem;
    height: 4rem;
  }
}

.container-icons-stores {
  display: flex;
  align-items: center;
  gap: 16px;
}
.container-icons-stores .store {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  width: 167px;
  height: 53px;
  transition: all 0.3s;
  cursor: pointer;
}
.container-icons-stores .store p {
  margin-left: 10px;
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  color: var(--gray-color-000);
}
.container-icons-stores .store p strong {
  font-weight: 700;
  font-size: 13px;
  line-height: 17px;
}
.container-icons-stores .store:hover {
  transform: scale(1.08);
}

.text-display {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 120%;
  color: var(--gray-color-900);
}
@media screen and (max-width: 960px) {
  .text-display {
    font-size: 4rem;
  }
}

.text-title {
  font-size: 4rem;
  line-height: 120%;
  color: var(--gray-color-900);
}
@media screen and (max-width: 960px) {
  .text-title {
    font-size: 3.2rem;
  }
}

.text-body {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--gray-color-600);
}

.text-hat {
  color: var(--primary-color-main);
  font-family: "Poppins";
  font-weight: 700;
  color: var(--primary-color-main);
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.2em;
}

:root {
  --gradient: linear-gradient(157.9deg, #4C6EF5 -0.59%, #1E325F 113.51%);
  --primary-color-main: #4C6EF5;
  --primary-color-light: #DBE4FF;
  --primary-color-dark: #3B5BDB;
  --gray-color-900: #212529;
  --gray-color-700: #495057;
  --gray-color-600: #868E96;
  --gray-color-400: #D9D9D9;
  --gray-color-000: #F8F9FA;
  --background-color: #FAFDF6;
  font-size: 62.5%;
}
@media screen and (max-width: 1140px) and (min-width: 540px) {
  :root {
    font-size: 55%;
  }
}
@media screen and (max-width: 960px) {
  :root {
    font-size: 50%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background-color);
  overflow-x: hidden;
}

.header .container {
  display: grid;
  grid-template-areas: "l n b";
  grid-template-columns: 136px 1fr 170px;
  padding-top: 24px;
  width: 100%;
}
.header .logo {
  grid-area: l;
}
.header .navigation {
  grid-area: n;
  display: flex;
  align-items: center;
}
.header .navigation > ul {
  margin-left: 64px;
  gap: 32px;
  display: flex;
}
.header .navigation + div {
  display: flex;
}
.header .menu {
  grid-area: b;
}
.header .navigation-link {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.header .navigation-link a {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--gray-color-900);
  padding: 8px 0;
}
.header .navigation-link.dropdown::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  transition: all 0.3s ease;
  background-image: url("../../assets/images/arrow-down.svg");
}
.header .navigation-link:hover > a {
  color: var(--primary-color-main);
}
.header .navigation-link:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.header .navigation-link:hover::after {
  transform: translateY(10%);
}
@media screen and (max-width: 960px) {
  .header .container {
    display: flex;
    justify-content: space-between;
  }
  .header .navigation,
  .header .button {
    display: none;
  }
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  background: var(--background-color);
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}
.dropdown-menu a:hover {
  color: var(--primary-color-main);
}

.navigation-mobile {
  transition: all 0.3s;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.navigation-mobile.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  z-index: 99;
}
.navigation-mobile ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.navigation-mobile .navigation-link a {
  font-size: 2.4rem;
}

.menu {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 32px;
  gap: 8px;
}
.menu span {
  border-radius: 8px;
  width: 100%;
  height: 2px;
  background: var(--gray-color-900);
}
.menu.close {
  position: fixed;
  z-index: 100;
  right: 15px;
}
.menu.close span:nth-child(1) {
  transform: rotate(-405deg) translate(-6px, 7px);
}
.menu.close span:nth-child(2) {
  display: none;
}
.menu.close span:nth-child(3) {
  transform: rotate(405deg) translateY(-50%);
}
@media screen and (max-width: 960px) {
  .menu {
    display: flex;
  }
}

.main {
  height: calc(100svh - 80px);
  display: flex;
  align-items: center;
}
.main::after {
  content: "";
  width: 50vw;
  height: calc(100% + 80px);
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  transform: translateY(-80px);
  background: linear-gradient(157.9deg, #4C6EF5 -0.59%, #1E325F 113.51%);
}
.main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .content {
  width: 100%;
  max-width: 492px;
}
.main .content .text-display span {
  color: var(--primary-color-main);
}
.main .content p {
  margin: 0.8rem 0 2.4rem;
}
.main .container-card {
  perspective: 500px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .card {
  width: 340px;
  height: 214.2px;
  border-radius: 12px;
  transform-origin: center center;
  transform-style: preserve-3d;
  background-color: transparent;
  position: absolute;
  right: 0;
}
.main .card.card-frente {
  background-image: url("../../assets/images/card-frente.svg");
  background-size: cover;
  z-index: -1;
  transform: rotate(-9.11deg) translateY(-100px) translateX(-60px);
  transform-origin: center;
  animation: card-move-front 12s ease infinite alternate;
}
.main .card.card-verso {
  background-image: url("../../assets/images/card-verso.svg");
  background-size: cover;
  right: 0;
  z-index: -2;
  transform: rotate(-18.1deg);
  animation: card-move-verso 12s ease infinite alternate;
}
@media screen and (max-width: 960px) {
  .main {
    height: calc(100svh - 66px);
  }
  .main .content,
  .main .container {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .main::after {
    display: none;
  }
  .main .container-card {
    display: none;
  }
}

@keyframes card-move-front {
  0%, 100% {
    transform: translate3d(0, 0, 1px) rotate(-9deg) rotateX(5deg) translateY(-100px) translateX(-60px);
  }
  50% {
    transform: translate3d(0, 0, 1px) rotateY(-9deg) rotateX(5deg) translateY(-110px) translateX(-65px);
  }
}
@keyframes card-move-verso {
  0%, 100% {
    transform: translate3d(0, 0, 1px) rotate(-18deg) rotateX(5deg) translate(0, 0);
  }
  50% {
    transform: translate3d(0, 0, 1px) rotate(-9deg) rotateX(5deg) translate(10px, 5px);
  }
}
.s-cards {
  margin-top: 150px;
}
.s-cards .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s-cards .content {
  max-width: 51.4rem;
}
.s-cards .content ul {
  margin-top: 3.2rem;
}
.s-cards .content li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}
.s-cards .content li + li {
  margin-top: 2rem;
}
.s-cards .content h4 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}
.s-cards .content p {
  color: var(--gray-color-600);
}
.s-cards .cards {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateX(-80px);
}
.s-cards .shadow {
  width: 422px;
  transform: translateY(40px);
  height: 20px;
  background: rgba(52, 58, 64, 0.03);
  border-radius: 100%;
  animation: shadow-move 3s ease 1s infinite alternate;
}
.s-cards .card {
  z-index: 5;
  display: block;
  width: 285px;
  height: 164px;
  border-radius: 14.3559px;
}
.s-cards .card-one {
  background: linear-gradient(114deg, #3777F4 -4.38%, #1B2A4C 105.88%);
  border-radius: 14.3559px;
  transform: matrix(0.94, 0.35, -0.36, 0.93, 0, 0) translateY(-10px) translateX(-12px);
  animation: card-move-1 3s ease 1s infinite alternate;
}
.s-cards .card-two {
  background: linear-gradient(114deg, #3777F4 -4.38%, #1B2A4C 105.88%);
  transform: matrix(0.97, -0.23, 0.25, 0.97, 0, 0) translateX(28px);
  z-index: -1;
  animation: card-move-2 3s ease 1s infinite alternate;
}
@media screen and (max-width: 960px) {
  .s-cards .container {
    flex-direction: column;
    gap: 80px;
  }
  .s-cards .container li {
    grid-template-columns: 64px 1fr;
    gap: 8px;
  }
  .s-cards .cards {
    width: 80%;
  }
}
@media screen and (max-width: 540px) {
  .s-cards .card {
    width: 225px;
    height: 134px;
    border-radius: 14.3559px;
  }
  .s-cards .shadow {
    width: 100%;
  }
}

@keyframes shadow-move {
  0% {
    transform: translateY(40px) scale(0.9);
  }
  100% {
    transform: translateY(40px) scale(1);
  }
}
@keyframes card-move-1 {
  0% {
    transform: matrix(0.94, 0.35, -0.36, 0.93, 0, 0) translate3d(0, -40px, 0) rotate(0deg);
  }
  100% {
    transform: matrix(0.94, 0.35, -0.36, 0.93, 0, 0) translate3d(0, 20px, 0) rotate(-5deg);
  }
}
@keyframes card-move-2 {
  0% {
    transform: matrix(0.97, -0.23, 0.25, 0.97, 0, 0) translate3d(0, -40px, 0) rotate(0deg);
  }
  100% {
    transform: matrix(0.97, -0.23, 0.25, 0.97, 0, 0) translate3d(0, 20px, 0) rotate(5deg);
  }
}
.s-app {
  margin-top: 200px;
}
.s-app .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-app .container .phone {
  position: relative;
  transform: translateX(104px);
}
.s-app .container .phone > svg {
  width: 295px;
  height: 603px;
}
.s-app .container .phone .icon {
  position: absolute;
  animation: move 2s ease-in infinite alternate;
}
.s-app .container .phone .icon:nth-child(1) {
  top: 76px;
  left: 0;
  transform: translateY(0) translateX(-50%) scale(1.2);
  animation-delay: 0.5s;
}
.s-app .container .phone .icon:nth-child(2) {
  bottom: 0;
  left: 0;
  transform: translateY(0) translateX(-50%) scale(1.2);
  animation-delay: 1.5s;
}
.s-app .container .phone .icon:nth-child(3) {
  top: 248px;
  right: 0;
  transform: translateX(50%);
  animation: move-2 2s 2s ease-in infinite alternate;
}
.s-app .container .content {
  max-width: 520px;
}
.s-app .container .content ul {
  margin-top: 3.2rem;
}
.s-app .container .content ul p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--gray-color-700);
}
.s-app .container .content li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
}
.s-app .container .content li + li {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .s-app {
    margin-top: 100px;
  }
  .s-app .container {
    flex-direction: column-reverse;
    gap: 64px;
  }
  .s-app .container .content li {
    grid-template-columns: 64px 1fr;
    gap: 8px;
  }
  .s-app .container .phone {
    transform: translateX(0);
  }
  .s-app .container .phone > svg {
    width: 200px;
    height: auto;
  }
}

@keyframes move {
  from {
    transform: translateY(0) translateX(-50%) scale(1.2);
  }
  to {
    transform: translateY(50px) translateX(-50%) scale(0.9);
  }
}
@keyframes move-2 {
  from {
    transform: translateY(0) translateX(50%);
  }
  to {
    transform: translateY(50px) translateX(50%);
  }
}
.s-benefits {
  margin-top: 208px;
  display: flex;
}
.s-benefits .container {
  position: relative;
}
.s-benefits .content {
  position: relative;
  z-index: 2;
}
.s-benefits .content h2 {
  max-width: 478px;
}
.s-benefits .container-cards {
  margin-top: 40px;
  display: grid;
  grid-template-areas: "p  . ." "s  t ." "c  v v-2";
  grid-template-columns: repeat(3, 280px);
  gap: 32px;
}
.s-benefits .container-cards img {
  width: 40px;
  height: 40px;
  transition: all 0.2s;
}
.s-benefits .container-cards .card {
  display: flex;
  flex-direction: column;
  background: var(--primary-color-light);
  padding: 32px 16px 24px 16px;
  border-radius: 8px;
  align-items: start;
  overflow: hidden;
  position: relative;
}
.s-benefits .container-cards .card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-31px);
  transition: all 0.3s ease;
  width: 40px;
  height: 30px;
  border-radius: 0 0 8px 8px;
  background: var(--primary-color-dark);
}
.s-benefits .container-cards .card:hover::after {
  transform: translateY(0);
}
.s-benefits .container-cards .card strong {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #4C6EF5;
  margin: 16px 0 20px;
}
.s-benefits .container-cards .card p {
  color: var(--gray-color-900);
}
.s-benefits .text-display {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 400px;
  line-height: 100%;
  position: absolute;
  right: 0;
  bottom: 50%;
  z-index: 10;
  transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0) translate(10%, 30%);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: all 0.4s ease;
}
.s-benefits .text-display:nth-child(1):hover {
  transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0) translate(20%, 50%);
}
.s-benefits .text-display:nth-child(2) {
  pointer-events: none;
  background: linear-gradient(157.9deg, rgba(76, 110, 245, 0.4) -0.59%, rgba(30, 50, 95, 0.4) 113.51%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0) translate(20%, 50%);
}
.s-benefits [data-grid=p] {
  grid-area: p;
}
.s-benefits [data-grid=s] {
  grid-area: s;
}
.s-benefits [data-grid=t] {
  grid-area: t;
}
.s-benefits [data-grid=c] {
  grid-area: c;
}
.s-benefits [data-grid=v] {
  grid-area: v;
}
.s-benefits [data-grid=v-2] {
  grid-area: v-2;
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .s-benefits .text-display {
    font-size: 350px;
  }
}
@media screen and (max-width: 1140px) and (min-width: 540px) {
  .s-benefits .text-display {
    font-size: 250px;
  }
  .s-benefits .text-display:nth-child(1) {
    transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0) translate(-5%, 20%);
  }
  .s-benefits .text-display:nth-child(1):hover {
    transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0) translate(5%, 35%);
  }
  .s-benefits .text-display:nth-child(2) {
    transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0) translate(5%, 35%);
  }
}
@media screen and (max-width: 960px) {
  .s-benefits {
    margin-top: 100px;
  }
  .s-benefits .container-cards {
    align-items: center;
    justify-content: center;
    grid-template-areas: "p  t " "s  v " "c  v-2";
    grid-template-columns: repeat(2, 1fr);
  }
  .s-benefits .text {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .s-benefits .container-cards {
    grid-template-areas: "p" "t" "s" "v" "c" "v-2";
    grid-template-columns: repeat(1, 1fr);
  }
}

.s-testimonials {
  background: var(--gradient);
  margin-top: 204px;
}
.s-testimonials .container {
  padding: 112px 0;
  position: relative;
}
.s-testimonials .quotation-marks {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color-light);
  width: 96px;
  height: 88px;
  padding: 32px;
}
.s-testimonials .quotation-marks img {
  width: 32px;
  height: auto;
}
.s-testimonials .quotation-marks:nth-child(3) {
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.s-testimonials .quotation-marks:nth-child(4) {
  bottom: 0;
  right: 0;
  transform: translateY(50%);
}
.s-testimonials .arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 8rem;
  height: 8rem;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.2s;
}
.s-testimonials .arrow:nth-child(1) {
  left: 0%;
}
.s-testimonials .arrow:nth-child(1):hover {
  transform: translateY(-50%) scale(1.2);
}
.s-testimonials .arrow:nth-child(2) {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.s-testimonials .arrow:nth-child(2):hover {
  transform: translateY(-50%) rotate(180deg) scale(1.2);
}
.s-testimonials .container-testimonial {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.s-testimonials .container-testimonial > p {
  max-width: 80%;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 150%;
  text-align: center;
  color: var(--gray-color-000);
}
.s-testimonials .container-testimonial .divider {
  height: 56px;
  width: 4px;
  background: var(--gray-color-000);
}
.s-testimonials .container-testimonial .testimonial-person {
  display: flex;
  align-items: center;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray-color-000);
}
@media screen and (max-width: 1140px) and (min-width: 540px) {
  .s-testimonials {
    margin-top: 100px;
  }
  .s-testimonials .container-testimonial > p {
    display: inline-block;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 960px) {
  .s-testimonials {
    margin-top: 10rem;
  }
  .s-testimonials .container {
    padding: 8rem 0;
  }
  .s-testimonials .container-testimonial > p {
    font-size: 1.6rem;
    max-width: 90%;
  }
  .s-testimonials .container-testimonial .testimonial-person {
    font-size: 1.4rem;
  }
  .s-testimonials .arrow {
    transform: none;
    bottom: 0;
    width: 4rem;
    height: 4rem;
  }
  .s-testimonials .arrow:nth-child(1):hover {
    transform: scale(1.2);
  }
  .s-testimonials .arrow:nth-child(2) {
    transform: rotate(180deg);
  }
  .s-testimonials .arrow:nth-child(2):hover {
    transform: rotate(180deg) scale(1.2);
  }
  .s-testimonials .quotation-marks {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .s-testimonials .quotation-marks img {
    width: 16px;
  }
}

.s-download {
  margin-top: 244px;
}
.s-download .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-download .content > p {
  max-width: 591px;
  margin: 8px 0 32px;
}
.s-download .phone {
  transform: translateX(104px);
}
.s-download .phone img {
  width: 100%;
  max-width: 295px;
  max-height: 603px;
}
@media screen and (max-width: 960px) {
  .s-download {
    margin-top: 10rem;
  }
  .s-download .container {
    flex-direction: column;
    gap: 64px;
  }
  .s-download .container .container-icons-stores {
    flex-direction: column;
  }
  .s-download .container .container-icons-stores .store {
    width: 100%;
  }
  .s-download .phone {
    transform: translateX(0);
  }
  .s-download .phone img {
    margin: 0 auto;
    width: 80%;
    height: auto;
  }
}

.s-faq {
  margin-top: 180px;
}
.s-faq .container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 103px;
}
.s-faq .content {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 64px;
  left: 0;
}
@media screen and (max-width: 1140px) and (min-width: 540px) {
  .s-faq {
    margin-top: 100px;
  }
  .s-faq .container {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .s-faq ul {
    width: 100%;
  }
  .s-faq .content {
    justify-self: center;
    position: static;
  }
}
@media screen and (max-width: 960px) {
  .s-faq {
    margin-top: 100px;
  }
  .s-faq .container {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .s-faq .content {
    justify-self: start;
    position: static;
  }
}

.question {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-bottom: 1px solid var(--gray-color-400);
  cursor: pointer;
}
.question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.question-title {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 150%;
  color: var(--gray-color-900);
}
.question p {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}
.question .container-button {
  max-width: 28px;
  max-height: 28px;
}
.question span {
  display: block;
  width: 28px;
  background: var(--primary-color-light);
  height: 3px;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}
.question span::after {
  border-radius: 5px;
  content: "";
  position: absolute;
  height: 28px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color-light);
  transition: all 0.3s;
  width: 3px;
}
.question.open {
  border-bottom: 1px solid var(--primary-color-main);
}
.question.open p {
  max-height: -moz-fit-content;
  max-height: fit-content;
  visibility: visible;
  opacity: 1;
  margin-top: 32px;
}
.question.open span {
  background: transparent;
}
.question.open span::after {
  background: var(--primary-color-main);
  transform: translate(-50%, -50%) rotateZ(90deg);
}
.question:hover:is(:not(.open)) {
  border-color: var(--primary-color-main);
}
.question:hover:is(:not(.open)) span {
  background: var(--primary-color-main);
}
.question:hover:is(:not(.open)) span::after {
  background: var(--primary-color-main);
}

.footer {
  margin-top: 180px;
  background: var(--primary-color-dark);
  padding: 80px 0 64px;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.footer .container-icons-stores {
  flex-direction: column;
  align-items: flex-end;
}
.footer .container-icons-stores .store {
  background: var(--gray-color-000);
}
.footer .container-icons-stores p {
  color: var(--gray-color-900);
}
.footer .container-icons-stores svg,
.footer .container-icons-stores path {
  fill: var(--gray-color-900);
}
.footer h3 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 150%;
  color: var(--gray-color-000);
}
.footer ul {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer a {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: var(--gray-color-000);
  position: relative;
}
.footer a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--gray-color-000);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.3s;
}
.footer a:hover::after {
  transform: scale(1);
}
@media screen and (max-width: 960px) {
  .footer {
    margin-top: 100px;
  }
  .footer .container {
    display: grid;
    grid-template-areas: ". l ." "n p r" ".b .";
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }
  .footer .container h3 {
    font-size: 1.8rem;
  }
  .footer .container a {
    font-size: 1.6rem;
  }
  .footer .container .container-icons-stores {
    align-items: center;
  }
  .footer .container .col:nth-child(1) {
    grid-area: l;
  }
  .footer .container .col:nth-child(2) {
    grid-area: n;
  }
  .footer .container .col:nth-child(3) {
    grid-area: p;
  }
  .footer .container .col:nth-child(4) {
    grid-area: r;
  }
  .footer .container .col:nth-child(5) {
    grid-area: b;
  }
}
@media screen and (max-width: 540px) {
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "l l" "n p" "r ." "b b";
    gap: 32px;
  }
}/*# sourceMappingURL=styles.css.map */