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

body {
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  color: white;
  overflow-x: hidden;
}

.gradient-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(0,255,204,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.25), transparent 35%),
    radial-gradient(circle at center, rgba(139,92,246,0.15), transparent 40%),
    #0f172a;
}

/* ===== PARTICLES ===== */
.particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.particles span {
  position: absolute; border-radius: 50%;
  background: rgba(0,255,213,0.12);
  animation: float 12s infinite ease-in-out;
}
.particles span:nth-child(1) { width: 6px; height: 6px; top: 15%; left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { width: 4px; height: 4px; top: 30%; left: 80%; animation-delay: 2s; background: rgba(192,132,252,0.15); }
.particles span:nth-child(3) { width: 8px; height: 8px; top: 55%; left: 25%; animation-delay: 4s; }
.particles span:nth-child(4) { width: 5px; height: 5px; top: 70%; left: 65%; animation-delay: 1s; background: rgba(192,132,252,0.12); }
.particles span:nth-child(5) { width: 3px; height: 3px; top: 85%; left: 45%; animation-delay: 3s; }
.particles span:nth-child(6) { width: 7px; height: 7px; top: 10%; left: 55%; animation-delay: 5s; background: rgba(192,132,252,0.1); }
.particles span:nth-child(7) { width: 4px; height: 4px; top: 40%; left: 90%; animation-delay: 6s; }
.particles span:nth-child(8) { width: 6px; height: 6px; top: 60%; left: 5%; animation-delay: 7s; background: rgba(192,132,252,0.12); }
.particles span:nth-child(9) { width: 5px; height: 5px; top: 25%; left: 40%; animation-delay: 8s; }
.particles span:nth-child(10) { width: 3px; height: 3px; top: 80%; left: 75%; animation-delay: 9s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 1; }
  50% { transform: translateY(-10px) translateX(-10px); opacity: 0.6; }
  75% { transform: translateY(-40px) translateX(5px); opacity: 0.9; }
}

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 6%;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

header.scrolled {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 10px 6%;
}

.logo { display: flex; align-items: center; text-decoration: none; }

.logo-img {
  height: 48px; width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

header.scrolled .logo-img { height: 38px; }



.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  color: #d4d4d8; text-decoration: none; font-size: 0.95rem;
  font-weight: 500; transition: color 0.3s; position: relative;
}
.nav-desktop a:not(.nav-cta):hover { color: #00ffd5; }
.nav-desktop a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #00ffd5, #c084fc);
  transition: width 0.3s;
}
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(90deg, #00ffd5, #8b5cf6);
  color: #0f172a !important; padding: 10px 24px;
  border-radius: 50px; font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,255,213,0.35);
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 110;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #00ffd5; border-radius: 2px;
  position: absolute; left: 0;
  transition: 0.35s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
}
.mobile-menu a {
  color: white; text-decoration: none;
  font-size: 1.5rem; font-weight: 600;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #00ffd5; }
.nav-cta-mobile {
  background: linear-gradient(90deg, #00ffd5, #8b5cf6);
  color: #0f172a !important; padding: 14px 36px;
  border-radius: 50px; font-weight: 700 !important;
  margin-top: 10px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 6% 80px;
  gap: 50px; flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(0,255,213,0.1);
  border: 1px solid rgba(0,255,213,0.25);
  font-size: 0.85rem; font-weight: 500;
  color: #00ffd5; margin-bottom: 20px;
  animation: pulse-badge 3s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,213,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,255,213,0); }
}

.hero-text { flex: 1; min-width: 300px; }

.hero-text h1 {
  font-size: 3.4rem; line-height: 1.15;
  margin-bottom: 20px; font-weight: 800;
}
.hero-text h1 span {
  background: linear-gradient(90deg, #00ffd5, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem; line-height: 1.8;
  color: #d4d4d8; margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-btn {
  display: inline-flex; align-items: center;
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 600;
  background: linear-gradient(90deg, #00ffd5, #8b5cf6);
  color: white; font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(0,255,213,0.25);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(192,132,252,0.4);
}
.cta-outline {
  background: transparent;
  border: 2px solid rgba(0,255,213,0.4);
  box-shadow: none;
  color: #00ffd5;
}
.cta-outline:hover {
  border-color: #00ffd5;
  box-shadow: 0 0 20px rgba(0,255,213,0.2);
}

.hero-card {
  flex: 1; min-width: 300px; max-width: 500px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; padding: 36px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.hero-card h2 {
  font-size: 1.8rem; margin-bottom: 24px; color: white;
}
.hero-card h2 span { color: #00ffd5; }

.meaning-grid { display: grid; gap: 16px; }

.meaning-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.04);
  padding: 20px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
}
.meaning-item:hover {
  transform: translateX(6px);
  border-color: rgba(192,132,252,0.3);
}

.meaning-letter {
  min-width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #00ffd5, #8b5cf6);
  border-radius: 12px; font-weight: 800;
  font-size: 1.2rem; color: #0f172a;
}

.meaning-content strong {
  color: #00ffd5; font-size: 1.05rem;
  display: block; margin-bottom: 4px;
}
.meaning-content p { color: #a1a1aa; font-size: 0.9rem; line-height: 1.5; }

/* ===== SECTIONS ===== */
section { padding: 100px 6%; }

.section-title {
  text-align: center; font-size: 2.6rem;
  margin-bottom: 16px; font-weight: 700;
}
.section-subtitle {
  text-align: center; max-width: 750px; margin: auto;
  color: #d4d4d8; line-height: 1.8; margin-bottom: 60px;
  font-size: 1.05rem;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.05);
  border-radius: 24px; padding: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: #00ffd5;
  box-shadow: 0 8px 30px rgba(0,255,213,0.1);
}

.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { color: #00ffd5; margin-bottom: 12px; font-size: 1.25rem; }
.card p { color: #d4d4d8; line-height: 1.7; font-size: 0.95rem; }

/* ===== PLATFORMS ===== */
.platforms {
  display: flex; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none; font-weight: 600;
  font-size: 1.05rem; color: white;
  background: #c084fc;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 0 20px rgba(192,132,252,0.25);
}

.platform-btn:hover {
  transform: translateY(-3px);
  background: #a855f7;
  box-shadow: 0 0 30px rgba(168,85,247,0.4);
}

.platform-btn svg {
  flex-shrink: 0;
}

/* ===== HOST ===== */
.host-section {
  display: flex; align-items: flex-start;
  gap: 50px; flex-wrap: wrap;
}

.host-photo-wrapper {
  flex: 0 0 340px; position: relative;
}

.host-photo-img {
  width: 100%; height: 440px;
  object-fit: cover; border-radius: 28px;
  display: block; position: relative; z-index: 2;
}

/* Centraliza o rosto na foto */
.host-photo-img {
  object-position: center top;
}

.host-photo-border {
  position: absolute; inset: -8px;
  border-radius: 32px; z-index: 1;
  background: linear-gradient(160deg, #00ffd5, #8b5cf6);
  opacity: 0.25;
}

.host-label {
  font-size: 0.85rem; color: #c084fc;
  text-transform: uppercase; letter-spacing: 2px;
  font-weight: 600; margin-bottom: 8px;
}

.host-text { flex: 1; min-width: 300px; }

.host-text h2 {
  font-size: 2.6rem; margin-bottom: 24px; font-weight: 700;
}
.host-text h2 span { color: #00ffd5; }

.host-text p {
  line-height: 1.85; color: #d4d4d8;
  margin-bottom: 18px; font-size: 1rem;
}

.host-extra {
  padding: 20px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #c084fc;
  margin-top: 28px !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 32px 0;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px; padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,213,0.3);
}
.stat-card h3 {
  color: #00ffd5; font-size: 1.5rem;
  margin-bottom: 6px; font-weight: 700;
}
.stat-card p { color: #a1a1aa; font-size: 0.8rem; line-height: 1.4; }

/* ===== CONTACT ===== */
.contact-box {
  background: linear-gradient(135deg, rgba(0,255,213,0.08), rgba(192,132,252,0.1));
  border-radius: 28px; padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 700px; margin: auto;
}

.contact-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-box h3 { font-size: 2rem; margin-bottom: 14px; }
.contact-box p { color: #d4d4d8; margin-bottom: 28px; line-height: 1.8; font-size: 1.05rem; }

.cta-whatsapp {
  background: linear-gradient(90deg, #25D366, #128C7E);
  box-shadow: 0 0 20px rgba(37,211,102,0.3);
}
.cta-whatsapp:hover {
  box-shadow: 0 0 35px rgba(37,211,102,0.45);
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 6%; text-align: center;
  color: #71717a; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { margin-bottom: 12px; }
.footer-logo-img { height: 32px; width: auto; opacity: 0.5; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }

  .hero { padding: 100px 5% 60px; gap: 36px; }
  .hero-text h1 { font-size: 2.6rem; }
  .hero-card { max-width: 100%; }

  .host-section { flex-direction: column; align-items: center; }
  .host-photo-wrapper { flex: 0 0 auto; width: 100%; max-width: 360px; }
  .host-text { text-align: center; }
  .host-label { text-align: center; }
  .host-text h2 { text-align: center; }
  .host-extra { text-align: left; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  header { padding: 14px 5%; }
  .logo-img { height: 36px; }

  .hero { padding: 90px 5% 40px; min-height: auto; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .hero-badge { font-size: 0.78rem; padding: 6px 16px; }

  .hero-card { padding: 24px; border-radius: 22px; }
  .hero-card h2 { font-size: 1.4rem; }
  .meaning-item { padding: 14px; }
  .meaning-letter { min-width: 36px; height: 36px; font-size: 1rem; }

  .hero-actions { flex-direction: column; }
  .cta-btn { text-align: center; justify-content: center; width: 100%; }

  section { padding: 60px 5%; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 40px; }

  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px; }

  .platform-btn { padding: 14px 28px; font-size: 0.95rem; }

  .host-photo-wrapper { max-width: 280px; }
  .host-photo-img { height: 350px; }
  .host-text h2 { font-size: 2rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 20px; }

  .contact-box { padding: 36px 20px; }
  .contact-box h3 { font-size: 1.5rem; }
}

@media (max-width: 380px) {
  .hero-text h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.7rem; }
  .host-text h2 { font-size: 1.7rem; }
}
