
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&family=Quicksand:wght@300;500;700&display=swap');

:root {
  --bg-dark: #120018;
  --bg-mid: #2a1240;
  --purple: #8e44ff;
  --pink: #ff7ad9;
  --cyan: #7ef9ff;
  --gold: #ffd86b;
  --green: #8dffb1;
  --white: #fdfcff;
  --glass: rgba(255,255,255,0.08);
  --shadow: 0 0 20px rgba(255, 122, 217, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top, #3a0f52 0%, #120018 70%);
  position: relative;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(#ffd86b 1px, transparent 1px),
    radial-gradient(#7ef9ff 1px, transparent 1px);

  background-size:
    120px 120px,
    180px 180px,
    240px 240px;

  animation: starsMove 40s linear infinite;
  opacity: 0.6;
  z-index: -2;
}

@keyframes starsMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200px);
  }
}

body::after {
  content: "";
  position: fixed;
  width: 1200px;
  height: 1200px;
  background:
    radial-gradient(circle, rgba(142,68,255,0.3), transparent 70%);
  top: -300px;
  left: -200px;
  filter: blur(90px);
  animation: pulse 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%,100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-family: 'Comfortaa', cursive;
  font-size: 5rem;
  color: var(--pink);
  text-shadow:
    0 0 10px var(--pink),
    0 0 30px var(--purple);
  animation: float 4s ease-in-out infinite;
}

.hero p {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #eee;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.8;
}

@keyframes float {
  0%,100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.btn-magic {
  margin-top: 40px;
  padding: 16px 36px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  color: white;

  background: linear-gradient(
    135deg,
    var(--purple),
    var(--pink)
  );

  box-shadow:
    0 0 15px rgba(255,122,217,0.4),
    0 0 40px rgba(142,68,255,0.3);

  transition: 0.4s;
}

.btn-magic:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 0 20px rgba(255,122,217,0.8),
    0 0 60px rgba(142,68,255,0.6);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
  margin-top: 70px;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(14px);

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 24px;
  padding: 35px;

  transition: 0.5s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "✨";
  position: absolute;
  font-size: 5rem;
  opacity: 0.05;
  right: 10px;
  top: 0;
}

.card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: var(--shadow);
}

.card h2 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.card p {
  line-height: 1.8;
  color: #f0e9ff;
}

.mushroom {
  position: absolute;
  font-size: 4rem;
  animation: bounce 4s infinite ease-in-out;
  user-select: none;
}

.m1 {
  left: 5%;
  bottom: 5%;
}

.m2 {
  right: 10%;
  top: 15%;
  animation-delay: 1s;
}

.m3 {
  left: 45%;
  bottom: 10%;
  animation-delay: 2s;
}

@keyframes bounce {
  0%,100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

nav {
  width: 100%;
  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: sticky;
  top: 0;

  backdrop-filter: blur(10px);

  background: rgba(18, 0, 24, 0.45);
  z-index: 999;
}

.logo {
  font-family: 'Comfortaa', cursive;
  font-size: 1.5rem;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink);
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

nav a:hover {
  color: var(--cyan);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: var(--cyan);
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #120018;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--purple),
    var(--pink)
  );

  border-radius: 999px;
}
.glow-follow {
  position: fixed;
  width: 250px;
  height: 250px;
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255,122,217,0.22),
      transparent 70%);

  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 768px) {

  .hero h1 {
    font-size: 3rem;
  }

  nav {
    flex-direction: column;
    gap: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

}
.main-card {
  width: 90%;
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
}
.profile-area {
  margin-bottom: 30px;
}

.profile-img {
  width: 170px;
  height: 170px;

  object-fit: cover;

  border-radius: 50%;

  border: 5px solid rgba(255,255,255,0.2);

  box-shadow:
    0 0 25px rgba(255,122,217,0.6),
    0 0 60px rgba(142,68,255,0.4);

  animation: float 4s ease-in-out infinite;
}

.subtitle {
  margin-top: 10px;
  color: #eee;
  opacity: 0.9;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;

  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 24px;

  border: none;
  border-radius: 999px;

  cursor: pointer;

  background: rgba(255,255,255,0.08);

  color: white;

  backdrop-filter: blur(10px);

  transition: 0.4s;

  font-weight: bold;
}

.tab-btn:hover {
  transform: translateY(-4px);

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--pink)
    );

  box-shadow:
    0 0 15px rgba(255,122,217,0.4);
}

.tab-btn.active {
  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--pink)
    );

  box-shadow:
    0 0 20px rgba(255,122,217,0.5);
}


.tab-content p {
  line-height: 1.9;
  margin-bottom: 30px;
  color: #f7efff;
}
.about-body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section {
  width: 100%;
  padding: 60px 20px;
}

.about-card {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 60px;

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 35px;

  padding: 50px;

  box-shadow:
    0 0 40px rgba(255,122,217,0.12);
}

.mushroom-frame {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}

.mushroom-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 50%;

  border: 8px solid rgba(255,255,255,0.12);

  box-shadow:
    0 0 30px rgba(255,122,217,0.5),
    0 0 80px rgba(142,68,255,0.3);

  animation: float 5s ease-in-out infinite;
}
.mush {
  position: absolute;
  font-size: 3rem;

  animation: mushFloat 4s ease-in-out infinite;
}

.deco1 {
  top: -20px;
  left: 20px;
}

.deco2 {
  bottom: -10px;
  right: 10px;
}

.deco3 {
  top: 20px;
  right: -10px;
}

.deco4 {
  bottom: 30px;
  left: -15px;
}

@keyframes mushFloat {
  0%,100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}

.about-content h1 {
  font-size: 4rem;

  margin-bottom: 20px;

  color: var(--pink);

  font-family: 'Comfortaa', cursive;

  text-shadow:
    0 0 15px rgba(255,122,217,0.6);
}

.about-content p {
  line-height: 2;

  margin-bottom: 20px;

  color: #f3ecff;

  font-size: 1.1rem;
}

.about-buttons {
  margin-top: 35px;

  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.secondary {
  background:
    linear-gradient(
      135deg,
      #3a245f,
      #6b3fa0
    );
}

@media (max-width: 900px) {

  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-content h1 {
    font-size: 3rem;
  }

  .mushroom-frame {
    width: 260px;
    height: 260px;
  }

  .about-buttons {
    justify-content: center;
  }

}
body {
  transition:
    background 0.5s ease,
    color 0.5s ease;
}

.theme-toggle {
  position: fixed;

  top: 25px;
  right: 25px;

  width: 65px;
  height: 65px;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  font-size: 1.8rem;

  color: white;

  z-index: 9999;

  background:
    linear-gradient(
      135deg,
      #7c3cff,
      #ff7ad9
    );

  box-shadow:
    0 0 20px rgba(255,122,217,0.5);

  transition: 0.4s;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(8deg);
}

body.light-mode {

  background:
    radial-gradient(circle at top,
      #fff6b7 0%,
      #ffd76a 55%,
      #ffca3a 100%);

  color: #5c3b00;
}


body.light-mode::before {
  opacity: 0.3;

  background-image:
    radial-gradient(#fff2b0 1px, transparent 1px),
    radial-gradient(#ffffff 1px, transparent 1px),
    radial-gradient(#ffe066 1px, transparent 1px);
}



body.light-mode::after {
  background:
    radial-gradient(circle,
      rgba(255,255,180,0.5),
      transparent 70%);
}

body.light-mode .card,
body.light-mode .about-card {

  background:
    rgba(255,255,255,0.25);

  border:
    1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 0 35px rgba(255, 196, 0, 0.25);
}

body.light-mode h1,
body.light-mode h2 {
  color: #c26a00;

  text-shadow:
    0 0 10px rgba(255,196,0,0.4);
}

body.light-mode p,
body.light-mode a,
body.light-mode .subtitle {
  color: #5a4300;
}

body.light-mode .btn-magic,
body.light-mode .tab-btn.active {

  background:
    linear-gradient(
      135deg,
      #ffd43b,
      #ffb703
    );

  color: #4b3200;

  box-shadow:
    0 0 20px rgba(255,196,0,0.45);
}

body.light-mode .tab-btn {
  background:
    rgba(255,255,255,0.35);

  color: #6a4900;
}

body.light-mode .profile-img,
body.light-mode .mushroom-frame img {

  box-shadow:
    0 0 30px rgba(255,196,0,0.5),
    0 0 80px rgba(255,220,120,0.4);
}

body.light-mode .glow-follow {

  background:
    radial-gradient(circle,
      rgba(255,220,120,0.35),
      transparent 70%);
}

body.light-mode ::-webkit-scrollbar-track {
  background: #ffd76a;
}

body.light-mode ::-webkit-scrollbar-thumb {

  background:
    linear-gradient(
      #ffcf33,
      #ffb703
    );
}
/* =========================================
   REDES SOCIAIS
========================================= */

.social-section {
  padding: 80px 20px;
}

.social-card {

  max-width: 1200px;
  margin: auto;

  background:
    rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 35px;

  padding: 60px;

  box-shadow:
    0 0 40px rgba(255,122,217,0.12);
}

.social-card h1 {

  text-align: center;

  font-size: 4rem;

  margin-bottom: 30px;

  color: var(--pink);

  font-family: 'Comfortaa', cursive;

  text-shadow:
    0 0 20px rgba(255,122,217,0.5);
}

.intro {

  text-align: center;

  max-width: 850px;

  margin:
    0 auto 20px auto;

  line-height: 2;

  color: #f2ebff;
}

/* =========================================
   ITEM REDE
========================================= */

.social-item {

  display: flex;
  align-items: center;
  gap: 30px;

  margin-top: 40px;

  padding: 30px;

  border-radius: 25px;

  background:
    rgba(255,255,255,0.04);

  transition: 0.4s;
}

.social-item:hover {

  transform: translateY(-6px);

  background:
    rgba(255,255,255,0.08);

  box-shadow:
    0 0 25px rgba(255,122,217,0.15);
}


.social-icon {

  min-width: 90px;
  width: 90px;
  height: 90px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  text-decoration: none;

  font-size: 2rem;

  color: white;

  transition: 0.4s;
}

.social-icon:hover {
  transform: scale(1.12) rotate(5deg);
}

.cara {
  background:
    linear-gradient(135deg,#ff7ad9,#8e44ff);
}

.insta {
  background:
    linear-gradient(135deg,#ff5f6d,#ffc371);
}

.sky {
  background:
    linear-gradient(135deg,#4fc3ff,#0066ff);
}

.yt {
  background:
    linear-gradient(135deg,#ff3131,#ff7b7b);
}

.tumblr {
  background:
    linear-gradient(135deg,#34526f,#1d2c3a);
}

.tiktok {
  background:
    linear-gradient(135deg,#111,#ff0050);
}

.whats {
  background:
    linear-gradient(135deg,#25d366,#0f8f4d);
}

.social-text h2 {

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 1.7rem;
}

.social-text p {

  line-height: 1.9;

  color: #f3ecff;
}

.qr-section {

  margin-top: 70px;

  text-align: center;
}

.qr-section h2 {

  font-size: 2.5rem;

  margin-bottom: 20px;

  color: var(--pink);
}

.qr-section p {

  max-width: 700px;

  margin:
    0 auto 30px auto;

  line-height: 2;
}

.qr-box {

  width: 260px;
  height: 260px;

  margin: auto;

  padding: 15px;

  border-radius: 30px;

  background:
    rgba(255,255,255,0.08);

  box-shadow:
    0 0 30px rgba(255,122,217,0.2);

  animation:
    float 4s ease-in-out infinite;
}

.qr-box img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 20px;
}

body.light-mode .social-card,
body.light-mode .social-item,
body.light-mode .qr-box {

  background:
    rgba(255,255,255,0.25);
}

body.light-mode .social-text p,
body.light-mode .intro,
body.light-mode .qr-section p {

  color: #5c4300;
}


@media (max-width: 850px) {

  .social-card {
    padding: 35px;
  }

  .social-card h1 {
    font-size: 2.8rem;
  }

  .social-item {

    flex-direction: column;

    text-align: center;
  }

}

.shop-section {
  padding: 80px 20px;
}

.shop-header {
  text-align: center;
  margin-bottom: 60px;
}

.shop-header h1 {
  font-size: 4rem;
  color: var(--pink);
  font-family: 'Comfortaa', cursive;
  text-shadow: 0 0 20px rgba(255,122,217,0.5);
}

.shop-header p {
  margin-top: 15px;
  color: #f3ecff;
  font-size: 1.2rem;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: auto;
}


.product-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 0 35px rgba(255,122,217,0.2);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-card h2 {
  text-align: center;
  margin-top: 20px;
  color: var(--gold);
  font-size: 2rem;
}

.product-card p {
  padding: 20px;
  text-align: center;
  line-height: 1.8;
  color: #f3ecff;
}


.product-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-bottom: 25px;
}

.btn-cart {
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #8dffb1, #1ea95b);
  transition: 0.4s;
}

.btn-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(141,255,177,0.5);
}

.small {
  padding: 12px 18px;
}


.floating-cart {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 9999;
}

.cart-icon-btn {
  width: 75px;
  height: 75px;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  font-size: 2rem;
  color: white;

  position: relative;

  background: linear-gradient(135deg, #8e44ff, #ff7ad9);

  box-shadow: 0 0 25px rgba(255,122,217,0.4);

  transition: 0.4s;
}

.cart-icon-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 35px rgba(255,122,217,0.6);
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -2px;

  width: 30px;
  height: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: #ffd43b;
  color: #4b3200;

  font-weight: bold;
  font-size: 0.95rem;

  box-shadow: 0 0 15px rgba(255,212,59,0.5);
}

body.light-mode .product-card {
  background: rgba(255,255,255,0.25);
}

body.light-mode .shop-header p,
body.light-mode .product-card p {
  color: #5c4300;
}

body.light-mode .cart-icon-btn {
  background: linear-gradient(135deg, #ffd43b, #ffb703);
  color: #5c3b00;
}


@media (max-width: 900px) {

  .shop-header h1 {
    font-size: 2.8rem;
  }

}