:root {
  --bg: #FDFBFB;
  --card: #FFFFFF;
  --text: #2B2127;
  --muted: #6E5D68;
  --gold: #A83B7D;
  --gold-soft: rgba(232, 159, 197, 0.2);
  --rose-primary: #C4689E;
  --rose-gradient: linear-gradient(135deg, #FED7C3 0%, #E89FC5 50%, #C4689E 100%);
  --shadow: 0 18px 45px rgba(168, 59, 125, 0.12);
  --shadow-soft: 0 10px 28px rgba(168, 59, 125, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
}

.bio-page {
  width: 100%;
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}



.hero {
  position: relative;
  height: clamp(340px, 92vw, 430px);
  overflow: hidden;
  background: #FCE8EE;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(250, 245, 241, 0) 0%, rgba(250, 245, 241, 0.75) 65%, var(--bg) 100%);
  pointer-events: none;
}

.quick-actions {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 24px 34px;
  margin-top: -24px;
}

.brand-header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 20px 24px;
  margin-top: -12px;
}

.brand-title {
  font-family: "Great Vibes", "Alex Brush", cursive;
  font-size: clamp(2.3rem, 8.2vw, 3.1rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 0;
  padding: 0 10px;
}

.brand-subtitle {
  display: inline-block;
  font-family: "Alex Brush", "Allura", cursive;
  font-size: clamp(2.15rem, 7.5vw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold);
  margin-top: 0px;
  line-height: 1.15;
}

.brand-motto {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.94rem, 3.2vw, 1.06rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.015em;
  margin-top: 8px;
  line-height: 1.45;
  text-align: center;
}


.quick-action {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 91, 150, 0.11);
  color: var(--gold);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.icon {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--brand {
  fill: currentColor;
  stroke: none;
}

.quick-action:hover,
.quick-action:focus-visible {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(30, 41, 59, 0.15);
  outline: none;
}

.quick-action:active,
.link-card:active {
  transform: scale(0.985);
}

.links {
  display: grid;
  gap: 24px;
  padding: 0 18px 28px;
}

.links-separator {
  width: 100%;
  max-width: 280px;
  height: 2px;
  margin: 6px auto 6px;
  background: linear-gradient(90deg, transparent, rgba(232, 159, 197, 0.75), transparent);
  position: relative;
}

.links-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background: #C4689E;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(232, 159, 197, 0.28);
}

.link-card {
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 16px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1.8px solid transparent;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(135deg, #FED7C3 0%, #E89FC5 50%, #C4689E 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 28px rgba(196, 104, 158, 0.13);
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(254, 215, 195, 0.25), rgba(232, 159, 197, 0.15) 50%, transparent 80%);
  opacity: 0;
  transition: opacity 190ms ease;
  pointer-events: none;
}

.link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(196, 104, 158, 0.26);
  outline: none;
}

.link-card:focus-visible::before {
  opacity: 1;
}

@media (hover: hover) {
  .link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(196, 104, 158, 0.26);
  }

  .link-card:hover::before {
    opacity: 1;
  }
}

.link-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FED7C3 0%, #E89FC5 50%, #C4689E 100%);
  box-shadow: 0 6px 16px rgba(196, 104, 158, 0.28);
  border: none;
}

.link-content strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 5px;
}

.link-content span {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.48;
  font-weight: 300;
  letter-spacing: -0.02em;
}



.footer {
  text-align: left;
  padding: 2px 24px 28px;
}

.footer h2 {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 15px;
}

.divider {
  width: 100%;
  max-width: 255px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(232, 159, 197, 0.5), transparent);
  position: relative;
}

.divider::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(232, 159, 197, 0.2);
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(232, 159, 197, 0.35);
  color: var(--gold);
  transition: transform 180ms ease, background 180ms ease;
}

.footer-icon:hover,
.footer-icon:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  outline: none;
}

.copyright {
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.developer-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(196, 104, 158, 0.45);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.developer-link:hover,
.developer-link:focus-visible {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

@media (min-width: 520px) {
  body {
    padding-block: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 35, 25, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  padding: 20px;
}

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

.modal-content {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(30, 41, 59, 0.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 300ms ease;
  padding: 34px 24px 24px;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(196, 104, 158, 0.12);
  border: none;
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.modal-close:hover {
  background: rgba(196, 104, 158, 0.22);
}

.cv-title {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  text-align: left;
  margin-bottom: 24px;
}

.cv-section {
  margin-bottom: 22px;
}

.cv-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 5px;
}

.cv-section p {
  color: var(--text);
  line-height: 1.48;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* Button override */
button.link-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

/* WhatsApp Perimeter Animation */
.whatsapp-btn {
  border-color: transparent !important;
  box-shadow: 0 12px 34px rgba(232, 159, 197, 0.38) !important;
}

.animated-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  overflow: hidden;
}

.animated-border::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 35%, #FED7C3 60%, #E89FC5 80%, #C4689E 100%);
  animation: spinBorder 2.5s linear infinite;
}

@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
}

/* Highlight Button Styles */
.link-card-highlight {
  background: linear-gradient(135deg, #FED7C3 0%, #E89FC5 50%, #C4689E 100%);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(196, 104, 158, 0.35);
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.link-card-highlight .link-icon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.link-card-highlight .link-content strong {
  color: #fff;
}

.link-card-highlight .link-content span {
  color: rgba(255, 255, 255, 0.85);
}

@media (hover: hover) {
  .link-card-highlight:hover {
    background: linear-gradient(135deg, #0073BD, #003052);
    box-shadow: 0 18px 42px rgba(30, 41, 59, 0.35);
  }
}

.link-card-highlight:focus-visible {
  background: linear-gradient(135deg, #0073BD, #003052);
  box-shadow: 0 18px 42px rgba(30, 41, 59, 0.35);
}

/* Quiz Modal Styles */
.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-question {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.4;
  text-align: left;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: all 200ms ease;
  line-height: 1.4;
}







@media (hover: hover) {
  .quiz-option:hover {
    background: #FAFAFA;
    border-color: rgba(196, 104, 158, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 104, 158, 0.12);
  }
}

.quiz-option:focus-visible {
  outline: 2px solid var(--gold);
}

.quiz-progress-bar-container {
  width: 100%;
  height: 6px;
  background-color: rgba(196, 104, 158, 0.18);
  border-radius: 4px;
  margin-top: 36px;
  margin-bottom: 24px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background-color: var(--gold);
  border-radius: 4px;
  transition: width 300ms ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Portfolio Section & Carrossel Vivo Horizontal */
.portfolio-section {
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 0 10px;
  overflow: hidden;
}

.portfolio-title {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.marquee-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 8px 0 12px;
}

.marquee-carousel::before,
.marquee-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 5;
  pointer-events: none;
}

.marquee-carousel::before {
  left: 0;
  background: linear-gradient(to right, #FDFBFB 0%, #FDFBFB 28%, rgba(253, 251, 251, 0) 100%);
}

.marquee-carousel::after {
  right: 0;
  background: linear-gradient(to left, #FDFBFB 0%, #FDFBFB 28%, rgba(253, 251, 251, 0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: liveCarousel 21s linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.marquee-group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
  flex-shrink: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.marquee-carousel:hover .marquee-track,
.marquee-carousel:active .marquee-track {
  animation-play-state: running;
}

@keyframes liveCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-card {
  width: clamp(98px, 26vw, 120px);
  height: clamp(98px, 26vw, 120px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid rgba(232, 159, 197, 0.55);
  box-shadow: 0 4px 14px rgba(196, 104, 158, 0.12);
  transition: transform 250ms ease, box-shadow 250ms ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

@media (hover: hover) {
  .marquee-card:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 24px rgba(196, 104, 158, 0.25);
    border-color: rgba(196, 104, 158, 0.7);
  }

  .marquee-card:hover .marquee-img {
    transform: scale(1.08);
  }
}

.marquee-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 250ms ease;
}

/* Modifier para os depoimentos (cards mais largos e de altura automática) */
.marquee-card--review {
  width: clamp(280px, 85vw, 380px);
  height: auto;
  aspect-ratio: auto;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-card--review .marquee-img--review {
  aspect-ratio: auto;
  object-fit: contain;
  transform: scale(1);
  border-radius: 8px;
}

@media (hover: hover) {
  .marquee-card--review:hover .marquee-img--review {
    transform: scale(1.02);
  }
}

/* Modifier para carrossel vertical (Depoimentos) */
.marquee-carousel--vertical {
  height: 380px;
  display: flex;
  justify-content: center;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: none; /* impede que o 'puxão' role a página toda */
  -webkit-overflow-scrolling: touch;
}

/* Ocultar a barra de rolagem */
.marquee-carousel--vertical::-webkit-scrollbar {
  display: none;
}
.marquee-carousel--vertical {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.marquee-carousel--vertical::before,
.marquee-carousel--vertical::after {
  width: 100%;
  height: 60px;
  left: 0;
  right: 0;
}

.marquee-carousel--vertical::before {
  top: 0;
  bottom: auto;
  background: linear-gradient(to bottom, #FDFBFB 0%, #FDFBFB 30%, rgba(253, 251, 251, 0) 100%);
}

.marquee-carousel--vertical::after {
  bottom: 0;
  top: auto;
  background: linear-gradient(to top, #FDFBFB 0%, #FDFBFB 30%, rgba(253, 251, 251, 0) 100%);
}

.marquee-track--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: max-content;
  animation: none;
  will-change: transform;
}

.marquee-group--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  padding-right: 0;
  flex-shrink: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}