/* ==========================================
   MORENA FLOR STORE - LINK NA BIO STYLES
   ========================================== */

:root {
  --bg-color: #202124;
  --card-bg: #27282b;
  --accent-rose: #be8883;
  --accent-rose-hover: #ce9691;
  --accent-rose-dark: #a9736f;
  --text-main: #ffffff;
  --text-muted: #a0a0a5;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 480px;
  --border-radius-btn: 30px;
  --border-radius-card: 16px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 6px 20px rgba(190, 136, 131, 0.35);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #141416;
  color: var(--text-main);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 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 40px rgba(0, 0, 0, 0.6);
}

/* Bio Main Card */
.bio-card {
  background-color: var(--bg-color);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header Section with Top Background Image (TOPO 3) */
.header-section {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
}

.header-bg-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(32, 33, 36, 0.4) 60%,
    rgba(32, 33, 36, 1) 100%
  );
}

/* Profile Avatar (Overlapping header bottom) */
.profile-avatar-wrapper {
  position: absolute;
  bottom: -65px;
  z-index: 10;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  padding: 4px;
  background: var(--bg-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--accent-rose);
  display: block;
}

/* Main Content Section */
.content-section {
  padding: 80px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Featured Banner Card */
.featured-banner-wrapper {
  width: 100%;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #17181a;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-banner-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.featured-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Nav Links Buttons (Overlapping bottom of banner) */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: -44px; /* Perfectly aligns top curve of pill button over banner curve */
  position: relative;
  z-index: 5;
}

.link-btn {
  width: 100%;
  background: var(--accent-rose);
  color: var(--text-main);
  text-decoration: none;
  border-radius: var(--border-radius-btn);
  padding: 10px 16px 10px 14px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.link-btn:hover, .link-btn:focus {
  background: var(--accent-rose-hover);
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-glow);
}

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

.btn-icon-box {
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-rose);
}

.btn-text {
  flex: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding-right: 42px; /* balance icon offset */
}

/* "Elas Usam" Section */
.elas-usam-section {
  width: 100%;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  letter-spacing: 0.5px;
}

/* Carousel Styles */
.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: 14px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(50% - 7px);
  aspect-ratio: 3 / 4.2;
  border-radius: 14px;
  overflow: hidden;
  background-color: #17181a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  user-select: none;
  -webkit-user-drag: none;
}

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

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

/* Carousel Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #202124;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: #202124;
}

.carousel-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

.dot.active {
  background: var(--accent-rose);
  width: 22px;
  border-radius: 10px;
}

/* Footer Section */
.footer-section {
  padding: 24px 20px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Responsive tweaks */
@media (max-width: 380px) {
  .header-section {
    height: 210px;
  }
  .profile-avatar-wrapper {
    width: 125px;
    height: 125px;
    bottom: -55px;
  }
  .content-section {
    padding-top: 70px;
  }
  .btn-text {
    font-size: 1.02rem;
  }
}
