/* --- RESET & VARIABLES --- */
:root {
  --bg-dark: #0a0907;
  --bg-card: rgba(15, 13, 10, 0.75);
  --border-glass: #241f18;
  --border-glow: rgba(255, 90, 31, 0.4);
  
  --primary-accent: #ff5a1f;
  --primary-gradient: linear-gradient(135deg, #ff5a1f 0%, #e8b339 100%);
  --secondary-gradient: linear-gradient(135deg, #e8b339 0%, #ff5a1f 100%);
  --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  
  --text-main: #f5f1ea;
  --text-muted: #8c857a;
  --text-dim: #5d564b;
  
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  -webkit-tap-highlight-color: transparent;
}

.svg-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: #0a0907;
  background-image: 
    radial-gradient(ellipse 100% 60% at 50% -20%, rgba(255, 90, 31, 0.08), transparent 80%),
    radial-gradient(ellipse 80% 50% at 100% 70%, rgba(232, 179, 57, 0.05), transparent 80%);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  padding-bottom: 40px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(rgba(245, 241, 234, 0.5) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(200px);
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
}

.glow-1 {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff5a1f;
}

.glow-2 {
  bottom: 5%;
  right: -150px;
  background: #e8b339;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- PROFILE HEADER --- */
.profile-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.avatar-container {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 12px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: var(--bg-dark);
  color: #38bdf8;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.profile-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 340px;
  line-height: 1.4;
}

/* Social Bar */
.social-bar {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* --- BUTTONS --- */
.btn-primary {
  width: 100%;
  background: var(--emerald-gradient);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-secondary:hover {
  transform: scale(1.05);
}

.btn-outline {
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* --- BENTO SECTION HEADER --- */
.bento-section-header {
  margin-top: 14px;
  margin-bottom: 2px;
  text-align: left;
}

.bento-kicker {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ff5a1f;
  text-transform: uppercase;
}

.bento-section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #f5f1ea;
  margin-top: 2px;
}

/* --- BENTO GRID LAYOUT --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bento-hero, .bento-free-banner {
    grid-column: span 1 !important;
  }
  .bento-hero-grid {
    grid-template-columns: 1fr;
  }
  .bento-free-banner {
    flex-direction: column;
    text-align: center;
  }
  .reviews-wrapper {
    width: 100%;
    max-width: 100vw;
  }
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 10px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.6);
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.18);
}

/* Bento Hero (Mentoria V360) - Spans 2 Cols */
.bento-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.12) 0%, rgba(15, 13, 10, 0.85) 100%);
  border: 1px solid rgba(255, 90, 31, 0.35);
  padding: 12px;
}

.bento-badge {
  display: inline-block;
  background: #e8b339;
  color: #000;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.bento-hero-grid {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 16px;
  align-items: center;
}

.bento-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid rgba(255, 90, 31, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 90, 31, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-thumb:hover {
  transform: scale(1.03);
  border-color: var(--primary-accent);
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.35);
}

.bento-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento-thumb:hover img {
  transform: scale(1.08);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  gap: 4px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.play-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 90, 31, 0.6);
  transition: transform 0.2s ease;
}

.bento-thumb:hover .play-button {
  transform: scale(1.15);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.8rem;
}

.rating-stars span {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 6px;
}

.bento-hero-info h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 4px 0 6px;
}

.bento-hero-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.bento-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-primary-bento {
  background: var(--primary-gradient);
  color: #0a0907;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.btn-primary-bento:hover {
  transform: translateY(-2px);
}

.btn-link-bento {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-link-bento:hover {
  color: var(--text-main);
}

/* Bento Product Card */
.bento-product {
  gap: 8px;
  padding: 14px;
}

.bento-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 6px;
}

.bento-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-card-thumb img {
  transform: scale(1.06);
}

.bento-thumb-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10, 9, 7, 0.88);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
}

.bento-thumb-tag.highlight {
  border-color: rgba(255, 90, 31, 0.6);
  color: #ff5a1f;
  background: rgba(255, 90, 31, 0.15);
}

.bento-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  justify-content: space-between;
}

.bento-product h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.bento-product p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-bento-buy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.25 ease;
  width: 100%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-bento-buy:hover {
  background: var(--primary-gradient);
  color: #0a0907;
  border-color: transparent;
}

/* Bento Free Banner - Spans 2 Cols */
.bento-free-banner {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(15, 13, 10, 0.9) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 12px 14px;
}

.bento-free-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.bento-free-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.free-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.free-info h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 4px 0 2px;
}

.free-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-whatsapp-bento {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.btn-whatsapp-bento:hover {
  transform: scale(1.04);
}

/* --- SOCIAL PROOF CAROUSEL --- */
.social-proof-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-proof-section h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.reviews-wrapper {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-behavior: auto;
}

.reviews-wrapper::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.review-header strong {
  font-size: 0.85rem;
  display: block;
}

.review-header .stars {
  font-size: 0.7rem;
  color: #f59e0b;
}

.review-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --- FOOTER --- */
.footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

/* --- MODALS --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.glass-modal {
  background: #121620;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .glass-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}

.modal-close:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.2);
}

/* Checkout Specifics */
.secure-badge {
  font-size: 0.75rem;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.modal-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.modal-price strong {
  color: #10b981;
}

.payment-selector {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.pay-tab {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
}

.pay-tab.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

.qr-code-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-placeholder {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 3rem;
}

.qr-placeholder p {
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 4px;
}

.pix-instructions {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pix-key-input {
  display: flex;
  width: 100%;
  gap: 8px;
}

.pix-key-input input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
}

.pix-key-input button {
  background: var(--primary-accent);
  color: #fff;
  border: none;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Card Form */
.card-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-form input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-main);
  font-size: 0.85rem;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

.full-width {
  width: 100%;
  margin-top: 6px;
}

.hidden {
  display: none;
}

/* Video Modal */
.video-modal-content {
  max-width: 600px;
  padding: 12px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Quiz Modal Options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.quiz-opt-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--text-main);
  text-align: left;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.quiz-opt-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary-accent);
}

/* Media Queries */
@media (max-width: 480px) {
  .bento-hero-grid {
    grid-template-columns: 1fr;
  }
  .bento-free-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn-whatsapp-bento {
    width: 100%;
    justify-content: center;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
  background-color: #20ba5a;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

