/* themes/dark_red.css */
:root {
  --bg-color: #121212;
  --text-primary: #e0e0e0;
  --text-accent: #f87171; /* Vermelho claro para texto */
  --accent-color: #ef4444; /* Vermelho principal */
  --button-bg: #1f1f1f;
  --border-color: #333;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 28rem;
  margin: auto;
  text-align: center;
}
.profile-picture {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  animation: fadeInDown 1s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-picture:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
}
.profile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}
.profile-subtitle {
  color: var(--text-accent);
  font-weight: 600;
  margin-top: 0.25rem;
}
.links-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.link-button {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  background-color: var(--button-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.link-button:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(239, 68, 68, 0.2);
}
.link-button.rounded-t-lg {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid var(--border-color);
}
.subtitle-box {
  background-color: var(--button-bg);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-top: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-sizing: border-box;
}
.subtitle-text {
  font-size: 0.875rem;
  color: var(--text-accent);
  font-weight: 600;
}
.coupon-button {
  background-color: #4a5568;
  color: white;
  font-family: monospace;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.coupon-button:active {
  transform: scale(0.95);
}
.coupon-button:disabled {
  background-color: #22c55e;
  cursor: not-allowed;
}
.block-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
}
.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card-block {
  background-color: var(--button-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.newsletter-form input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.newsletter-form button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
.social-icons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icon {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
  color: #fff;
  transform: scale(1.1);
}
.social-icon svg {
  width: 32px;
  height: 32px;
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
