/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h3,
h4,
p,
button {
  margin: 0;
  padding: 0;
  font-family: inter-var, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  color: #333;
}

/* Layout do body */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  height: 100%;
  overflow-x: hidden; /* Remove overflow horizontal */
  overflow-y: auto;
  background-color: #121214;
}

/* Navbar */
.nav-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background-color: #e2e2e2;

  text-align: center;
}

header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
  margin-top: 4rem;
  gap: 20px;
  overflow-x: hidden;
}

/* index */

.profile-container {
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  min-height: 100vh; /* Permite que o conteúdo cresça */
  max-width: 500px;
  width: 100%;
  margin: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-picture {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  object-fit: contain;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;

  max-width: 500px;
  width: 100%;
}

.link-button {
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border: none;
  background-color: rgb(255, 255, 255);
  color: #fff;
  transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3);
  border-radius: 14px;

  text-decoration: none;

  margin: 0px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-align: center;
  cursor: pointer;
  background: none;
  text-decoration: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: auto;
  position: relative;
  padding: 16px 20px;
  width: 100%;
  appearance: none;
  box-sizing: border-box;
  vertical-align: middle;

  border: 1px solid #b7b7b7;
}

.title-p {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  font-weight: bold;
  text-align: center;
  color: #fff;

  margin: 1rem auto 0 auto;
}

.subtitle {
  color: #fff;

  margin: 20px 0;
  text-align: start;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.icon {
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.icon:hover {
  color: #f1f2f5;
}

#particles-js {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

#videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video-item {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.video-item p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}

.divider {
  opacity: 0.6;
  border: 1px solid rgb(248, 248, 242);
  border-color: inherit;
  border-style: solid;
  border-bottom-width: 1px;
  max-width: 500px;
  width: 100%;
  margin: 20px 0;
}

.video-container {
  margin-top: 10px;
  max-width: 500px;
  width: 100%;
}

.setup {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
}

.setup h1 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: left;
}

.setup ul {
  list-style-type: none;
  padding: 0;
}

.setup li {
  font-size: 16px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.setup li a {
  text-decoration: none;
  color: #00aaff;
  margin-left: 8px;
  transition: color 0.3s ease-in-out;
}

.setup li a:hover {
  color: #ffcc00;
}

/* Tema rosa para o botão DateTo Love */
.link-button.pink-theme {
  background: linear-gradient(135deg, #ff6b9d, #e91e63);
  border: 1px solid #ff6b9d;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  font-weight: 600;
}

.link-button.pink-theme:hover {
  background: linear-gradient(135deg, #ff8bb3, #f06292);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Tema diferenciado para o Planner */
.link-button.planner-theme {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border: 1px solid #4f46e5;
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.link-button.planner-theme::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.link-button.planner-theme:hover::before {
  left: 100%;
}

.link-button.planner-theme:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}
