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

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

  /* Cores principais */
  --primary-color: #3b82f6;
  --primary-color-alt: #1d4ed8;
  --secondary-color: #10b981;
  --gradient-primary: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);

  /* Cores de texto e fundo */
  --title-color: #ffffff;
  --text-color: rgba(255, 255, 255, 0.9);
  --text-color-light: rgba(255, 255, 255, 0.7);
  --body-color: #0a0e24;
  --container-color: linear-gradient(
    145deg,
    rgba(30, 41, 59, 2),
    rgba(15, 23, 42, 0.7)
  );

  /* Sombras e gradientes */
  --shadow-img: 0 20px 50px rgba(0, 0, 0, 0.5);
  --glow-effect: linear-gradient(
    45deg,
    rgba(59, 130, 246, 0.4),
    rgba(16, 185, 129, 0.4)
  );

  /* Tipografia */
  --body-font: "Inter", system-ui, sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /* Font weight */
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  --font-black: 900;

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.1rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 3rem 1rem;
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-black);
  color: var(--title-color);
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
  margin-bottom: 2rem;
  text-align: center;
}
.main {
  overflow: hidden;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 3rem;
}



/*================= Scroll up ==============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background: var(--container-color);
  color: var(--title-color);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
  padding: 0.5rem;
  font-size: 1.25rem;
  border-radius: 50%;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.show-scroll {
  bottom: 1rem;
}

/*============= GLOBAL RESPONSIVE =============*/
@media screen and (min-width: 1024px) {
  .container {
    margin-inline: auto;
  }
}

/*===============================*/
/*========== HEADER ============*/
/*===============================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__close,
.nav__toggle,
.nav__actions {
  display: flex;
  color: var(--title-color);
  cursor: pointer;
}

.nav__logo {
  font-weight: var(--font-bold);
  column-gap: 0.5rem;
  align-items: center;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.nav__actions {
  font-size: 1.25rem;
  column-gap: 1rem;
  align-items: center;
}

.nav__menu {
  display: flex;
  align-items: center;
}

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

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

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

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

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

/* LOGO */
.logo-img {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav__logo:hover .logo-img {
  transform: scale(1.1);
}

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

.blur-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.7),
    rgba(15, 23, 42, 0.7)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active link */
.active-link {
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    min-height: 100vh;
    background-color: transparent;
    backdrop-filter: blur(6px);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease-in-out;
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .nav__menu.show-menu {
    right: 0;
  }
  .nav__menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
  }
  .nav__menu.show-menu::before {
    opacity: 1;
  }
}

@media screen and (min-width: 1024px) {
  .nav__toggle,
  .nav__close {
    display: none;
  }

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

  .nav__menu {
    width: initial;
    display: flex;
    justify-content: flex-end;
  }

  .nav__actions {
    font-size: 1.5rem;
    column-gap: 1rem;
  }
}

/*===============================*/
/*==== TRADINGVIEW WIDGET ======*/
/*===============================*/
.tradingview-widget-container {
  padding-top: 3rem;
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.5),
    rgba(15, 23, 42, 0.5)
  );
}

/*===============================*/
/*========= HOME / GLOW =========*/
/*===============================*/
.glow-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(0, 195, 255, 0.5),
      transparent 40%
    ),
    radial-gradient(circle at 75% 55%, rgba(59, 130, 246, 0.4), transparent 40%),
    linear-gradient(to bottom, #01031c, #0a0e24);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 12s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/*===============================*/
/*=========== HOME =============*/
/*===============================*/
.home.section {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 2rem 3rem;
  background: var(--container-color);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.home__data {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.home__title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2.5s ease infinite;
  background-size: 200%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.home__description {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.6s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.home__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  opacity: 0;
  animation: fadeIn 1.4s ease forwards 0.8s;
}

.home__trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.home__trust svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}

.home__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-primary);
  color: var(--title-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.6s ease forwards 1s;
}

.home__cta svg {
  width: 16px;
  height: 16px;
  fill: var(--title-color);
  transition: transform 0.3s ease;
}

.home__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
}

.home__cta:hover::before {
  left: 100%;
}

.home__cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.7);
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.home__cta:hover svg {
  transform: translateX(4px);
}

.home__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
}

.home__img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: var(--shadow-img);
  transition: transform 0.7s ease;
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
  border: 2px solid rgba(59, 130, 246, 0.3);
  opacity: 0;
  animation: fadeIn 1.8s ease forwards 0.3s;
  object-fit: contain;
}

.home__img:hover {
  transform: scale(1.1) rotateY(8deg);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }
  50% {
    transform: translateY(-15px) rotateY(5deg);
  }
}

/* Responsive up to 768px */
@media screen and (max-width: 768px) {
  .home.section {
    height: auto;
    min-height: 100vh;
  }

  .home__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__description {
    font-size: 0.875rem;
    margin: 0 auto 2rem;
  }

  .home__trust {
    justify-content: center;
    font-size: 0.75rem;
  }

  .home__img {
    max-width: 400px;
    margin: 0 auto;
  }

  .home__cta {
    padding: 0.8rem 1.8rem;
    font-size: 0.875rem;
  }
}

/* Responsive up to 425px */
@media screen and (max-width: 425px) {
  .home__title {
    font-size: 2rem;
  }

  .home__description {
    font-size: 0.813rem;
  }

  .home__trust {
    font-size: 0.7rem;
    gap: 0.8rem;
  }

  .home__img {
    max-width: 300px;
  }

  .home__cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.813rem;
  }
}

/*===============================*/
/*========= about ===============*/
/*===============================*/

.about__container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
 
}

.about__data {
  background: var(--container-color);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-img);
  backdrop-filter: blur(6px);
  max-width: 800px;
  width: 100%;
}

.about__description {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  line-height: 1.7;
}


/*===============================*/
/*========= VÍDEO GRÁFICO ======*/
/*===============================*/
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 3rem 0;
  height: 75vh;
}

.video-section video {
  width: 45%;
  border-radius: 16px;
  box-shadow: var(--shadow-img);
  border: 2px solid rgba(59, 130, 246, 0.3);
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.5s;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .video-section {
    height: auto;
  }

  .video-section video {
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .video-section video {
    width: 90%;
  }
}

/*===============================*/
/*========== CARD SECTION ======*/
/*===============================*/
.card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  background: transparent;
  height: 60vh;
}

.card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  padding: 1.5rem;
  width: 80%;
  max-width: 900px;
  box-shadow: var(--shadow-img);
  position: relative;
  background: var(--container-color);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 70%;
  background: var(--glow-effect);
  filter: blur(80px);
  z-index: 1;
  opacity: 0.5;
}

.card-image {
  width: 60%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.5s;
}

.card-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  left: 1.5rem;
  z-index: 1;
}

.card-content h2 {
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: var(--font-extra-bold);
  text-shadow: 0 3px 15px rgba(59, 130, 246, 0.3);
}

.card-content h2 span {
  color: var(--primary-color);
}

.card-content p {
  font-size: var(--normal-font-size);
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--gradient-primary);
  color: var(--title-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.card__cta svg {
  width: 16px;
  height: 16px;
  fill: var(--title-color);
  transition: transform 0.3s ease;
}

.card__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
}

.card__cta:hover::before {
  left: 100%;
}

.card__cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.card__cta:hover svg {
  transform: translateX(4px);
}

/*=========== RESPONSIVO ===========*/
@media (max-width: 768px) {
  .card-section {
    height: auto;
  }

  .card {
    flex-direction: column;
    align-items: center;
  }

  .card-image {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  .card-content {
    width: 100%;
    text-align: center;
    left: 0;
    padding-top: 1rem;
  }

  .card-content h2 {
    font-size: 1.5rem;
  }

  .card-content p {
    font-size: 0.875rem;
  }

  .card__cta {
    margin: 0 auto;
    padding: 0.7rem 1.8rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 425px) {
  .card {
    width: 90%;
  }

  .card-image {
    max-width: 200px;
  }

  .card-content h2 {
    font-size: 1.25rem;
  }

  .card-content p {
    font-size: 0.813rem;
  }
}

/*===============================*/
/*========= FAQ Section =========*/
/*===============================*/
.faq {
  padding: 6rem 4rem;
  background: var(--body-color);
}

.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.faq__title {
  width: 80vh;
  /* outras personalizações específicas pro título do FAQ */
}


.faq__header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--container-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-img);
  transition: background 0.3s ease;
  backdrop-filter: blur(6px);
  gap: 1rem;
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq__header.active .faq__icon {
  transform: rotate(180deg);
}

.faq__grid {
  max-width: 1000px;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq__grid.show {
  display: flex;
}

.faq-item {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-img);
  transition: transform 0.3s ease;
  backdrop-filter: blur(6px);  
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: 0.8rem;
  position: relative;
}

.faq-item h3::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  transform: rotate(180deg);
}

.faq-item p {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  line-height: 1.6;
  display: none;
}

.faq-item.active p {
  display: block;
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 0.5rem;
  }
  .faq__header,
  .faq-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box; /* 👈 ESSENCIAL para evitar overflow */
  }
}

/*===============================*/
/*======= TESTIMONIALS =========*/
/*===============================*/
.testimonial-section {
  padding-block: 6rem 3rem;
  background: var(--body-color);
  text-align: center;
  position: relative;
}

.testimonial-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
  display: flex;
  justify-content: center;
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0.5;
 
}

.swiper-slide-active {
  opacity: 1;
}

.testimonial-card {
  background: var(--container-color);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-img);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(6px);
  margin: 0 auto;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.15);
}

.testimonial-message {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--text-color-light);
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-message::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-author {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 1.1rem;
  margin: 0 2px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev i,
.swiper-button-next i{
  color: var(--primary-color);
  background: rgba(30, 41, 59, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  cursor: pointer;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 3.3rem; /* aqui você controla o TAMANHO DA SETA */
  color: var(--primary-color); /* ou var(--title-color) se quiser branca */
}


.swiper-pagination {
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  background: #888;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
    padding: 1.5rem;
    margin: 0 auto;
  }

  .testimonial-message {
    font-size: 0.95rem;
  }

  .testimonial-stars i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-section .section__title {
    font-size: var(--h2-font-size);
  }

  .testimonial-card {
    padding: 1rem;
  }
}

/*===============================*/
/*========= SUBSCRIPTION =======*/
/*===============================*/
.subscription-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 3rem 1rem;
  height: 100vh;
}

.subscription-card {
  position: relative;
  width: 350px;
  background: var(--container-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-img);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.5s;
}

.subscription-card-glow {
  position: absolute;
  inset: 0;
  background: var(--glow-effect);
  z-index: -1;
  filter: blur(60px);
  opacity: 0.4;
}

.subscription-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-extra-bold);
  margin-bottom: 1rem;
  text-shadow: 0 3px 15px rgba(59, 130, 246, 0.3);
}

.subscription-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.subscription-price {
  font-size: 2.5rem;
  font-weight: var(--font-black);
}

.subscription-price-year {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.daily-price {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 0.8rem;
}

.subscription-discount {
  background: rgba(59, 130, 246, 0.2);
  color: var(--secondary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.subscription-description-card {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.subscription-benefits {
  display: grid;
  gap: 1rem;
}

.subscription-benefits li {
  font-size: var(--normal-font-size);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.subscribe-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient-primary);
  color: var(--title-color);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  text-decoration: none;
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
  position: relative;
  overflow: hidden;
}

.subscribe-button svg {
  width: 16px;
  height: 16px;
  fill: var(--title-color);
  transition: transform 0.3s ease;
}

.subscribe-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
}

.subscribe-button:hover::before {
  left: 100%;
}

.subscribe-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.subscribe-button:hover svg {
  transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 480px) {
  .subscription-section {
    height: auto;
    min-height: 100vh;
  }

  .subscription-card {
    width: 100%;
    padding: 1.5rem;
  }

  .subscription-price {
    font-size: 2rem;
  }

  .subscription-benefits li {
    font-size: 0.875rem;
  }

  .subscribe-button {
    padding: 0.8rem;
    font-size: 0.875rem;
  }
}

/*=============================*/
/*======= WHATSAPP BUTTON =====*/
/*=============================*/
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: var(--title-color);
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.whatsapp-icon {
  font-size: 24px;
  line-height: 1;
}
