/* ========================================================
   BHETEL MODA MASCULINA - LINK NA BIO
   Design Clean, Elegante & Direto ao Ponto (Estilo Morena Flor)
   Paleta: Obsidian Midnight, Silver Chrome & Sapphire Blue
   ======================================================== */

:root {
  --font-heading: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Cores Principais */
  --bg-color: #030718;
  --card-bg: #071233;
  --card-surface: rgba(8, 20, 56, 0.88);
  
  /* Gradientes Metálicos & Safira */
  --silver-gradient: linear-gradient(135deg, #ffffff 0%, #dbeafe 35%, #cbd5e1 70%, #94a3b8 100%);
  --sapphire-gradient: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  --whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  
  --color-silver-100: #ffffff;
  --color-silver-200: #f1f5f9;
  --color-silver-300: #cbd5e1;
  --color-silver-400: #94a3b8;
  
  --color-sapphire: #2563eb;
  --color-electric: #38bdf8;
  --color-whatsapp: #25D366;
  
  --border-subtle: rgba(147, 197, 253, 0.18);
  --border-glow: rgba(56, 189, 248, 0.35);
  
  --max-width: 480px;
  --border-radius-btn: 30px;
  --border-radius-card: 18px;
  
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
  --shadow-whatsapp: 0 0 20px rgba(37, 211, 102, 0.35);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-color);
  color: var(--color-silver-200);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- DYNAMIC BACKGROUND & SMOOTH SCROLL CROSSFADE --- */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -4;
  pointer-events: none;
  will-change: opacity, transform;
}

.bg-layer.bg-1 {
  background-image: url('assets/background_1.webp');
  opacity: calc(1 - var(--scroll-bg, 0));
  transform: scale(calc(1.02 + (var(--scroll-bg, 0) * 0.04)));
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

.bg-layer.bg-2 {
  background-image: url('assets/background_2.webp');
  opacity: var(--scroll-bg, 0);
  transform: scale(calc(1.06 - (var(--scroll-bg, 0) * 0.04)));
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

.stars-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: -3;
  pointer-events: none;
  opacity: 0.85;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(
    180deg,
    rgba(2, 5, 18, 0.68) 0%,
    rgba(4, 11, 36, 0.82) 45%,
    rgba(2, 5, 18, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -2;
  pointer-events: none;
}

/* Outer Wrapper for responsive centering */
.bio-wrapper {
  width: 100%;
  max-width: var(--max-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Bio Main Card */
.bio-card {
  background-color: rgba(4, 10, 30, 0.85);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Header Section with Cover Image */
.header-section {
  position: relative;
  width: 100%;
  height: 240px;
  display: flex;
  justify-content: center;
}

.header-bg-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
}

.header-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(2, 5, 20, 0.05) 0%,
    rgba(3, 8, 26, 0.18) 35%,
    rgba(4, 10, 30, 0.55) 65%,
    rgba(4, 10, 30, 0.92) 88%,
    rgba(4, 10, 30, 1) 100%
  );
  pointer-events: none;
}

/* Profile 3D Logo (Floating with Ambient Glow - Ampliado e Destacado) */
.profile-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -56px;
  z-index: 10;
  width: 220px;
  height: 105px;
  cursor: pointer;
  perspective: 800px;
}

.logo-ambient-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.6) 0%, rgba(56, 189, 248, 0.3) 45%, transparent 75%);
  filter: blur(22px);
  z-index: 1;
  pointer-events: none;
  animation: auraPulse 4s infinite alternate ease-in-out;
}

@keyframes auraPulse {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.profile-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 18px rgba(56, 189, 248, 0.5));
  transition: transform 0.35s ease, filter 0.35s ease;
  user-select: none;
}

.profile-logo-wrapper:hover .profile-logo {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 1)) drop-shadow(0 0 30px rgba(56, 189, 248, 0.75));
}

/* Main Content Area */
.content-section {
  padding: 72px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

/* Brand Title & Tagline */
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(8, 24, 66, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #38bdf8;
  text-transform: uppercase;
  margin-top: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #38bdf8;
  border-radius: 50%;
  margin-right: 7px;
  display: inline-block;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulseSapphire 2.2s infinite;
}

@keyframes pulseSapphire {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.8); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

/* Nav Links Buttons */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.link-btn {
  width: 100%;
  background: var(--card-surface);
  color: var(--color-silver-100);
  text-decoration: none;
  border-radius: var(--border-radius-btn);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid var(--border-subtle);
  overflow: hidden;
}

.link-btn:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.link-btn:active {
  transform: translateY(-1px) scale(0.99);
}

/* Button 1: WhatsApp Specific */
.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, rgba(8, 28, 56, 0.95) 0%, rgba(4, 18, 38, 0.98) 100%);
}

.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.65);
  box-shadow: var(--shadow-whatsapp);
}

/* Button Icon Box */
.btn-icon-box {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-box {
  background: var(--whatsapp-gradient);
  color: #ffffff;
}

.instagram-box {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.btn-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.link-btn:hover .btn-icon-box {
  transform: scale(1.1) rotate(-4deg);
}

/* Button Text Content */
.btn-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  overflow: hidden;
}

.btn-text-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--color-silver-100);
}

.btn-text-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-silver-400);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--whatsapp-gradient);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.15);
  color: var(--color-silver-200);
  transition: transform 0.3s ease;
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.link-btn:hover .btn-arrow {
  transform: translateX(3px);
  background: var(--sapphire-gradient);
  color: #ffffff;
}

/* --- "ELES USAM" CAROUSEL SECTION --- */
.eles-usam-section {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-silver-400);
  font-weight: 500;
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-card);
  padding: 4px 0;
  touch-action: pan-y;
  cursor: grab;
}

.carousel-viewport:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(50% - 6px);
  aspect-ratio: 3 / 4.3;
  border-radius: 14px;
  overflow: hidden;
  background-color: #060e26;
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  position: relative;
  user-select: none;
  -webkit-user-drag: none;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 8px;
  background: linear-gradient(to top, rgba(2, 5, 20, 0.95) 0%, rgba(2, 5, 20, 0.6) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  pointer-events: none;
}

.slide-tag {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #38bdf8;
}

.slide-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-silver-100);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Carousel Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(6, 16, 44, 0.9);
  border: 1.5px solid var(--border-subtle);
  color: var(--color-silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.carousel-nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.carousel-nav:hover {
  background: var(--sapphire-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: -10px;
}

.next-btn {
  right: -10px;
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--color-electric);
  width: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

/* Footer Section */
.footer-section {
  padding: 20px 18px 26px;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer-section p {
  font-size: 0.72rem;
  color: var(--color-silver-400);
  letter-spacing: 0.3px;
}

/* --- LIGHTBOX MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(2, 4, 16, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-content {
  background: linear-gradient(180deg, #07153a 0%, #030a1c 100%);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--border-radius-card);
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(37, 99, 235, 0.35);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(4, 10, 28, 0.85);
  border: 1px solid var(--border-subtle);
  color: var(--color-silver-100);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.modal-close-btn:hover {
  background: #ffffff;
  color: #040c26;
  transform: scale(1.1);
}

.modal-img-container {
  width: 100%;
  height: 340px;
  background: #020410;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020410;
}

.modal-details {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #050e26;
  border-top: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-silver-100);
}

.modal-description {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-silver-300);
  line-height: 1.4;
}

.modal-cta-btn {
  width: 100%;
  background: var(--whatsapp-gradient);
  border: none;
  border-radius: var(--border-radius-btn);
  padding: 13px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.modal-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
}

/* Responsive Tweaks */
@media (max-width: 380px) {
  .header-section {
    height: 210px;
  }
  
  .profile-logo-wrapper {
    width: 185px;
    height: 90px;
    bottom: -48px;
  }

  .profile-logo {
    max-height: 84px;
  }

  .logo-ambient-aura {
    width: 195px;
    height: 85px;
  }
  
  .content-section {
    padding-top: 60px;
  }
  
  .btn-text-main {
    font-size: 0.95rem;
  }
  
  .btn-badge {
    font-size: 0.65rem;
    padding: 5px 8px;
  }
}
