@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --color-bg: #FBFBF9; /* Off-White */
  --color-glass: rgba(255, 255, 255, 0.7); /* Light Glassmorphism */
  --color-accent: #FFA6D2; /* Pink Mídia Kit */
  --color-accent-glow: rgba(255, 166, 210, 0.4);
  --color-text: #1A1A1A; /* Escuro */
  --color-text-muted: #666666; /* Cinza médio */
  --color-border: rgba(0, 0, 0, 0.08); /* Borda sutil */
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'DM Sans', sans-serif;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* =========================================
   LINK TREE BENTO BOX
   ========================================= */
.bento-container {
  width: 100%;
  max-width: 500px;
  padding: 3rem 1.5rem;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.radial-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle at top right, rgba(255,166,210,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.profile-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.profile-image-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-accent), transparent);
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-bg);
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.profile-name i {
  font-style: italic;
  font-weight: 500;
}

.profile-bio {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.social-icons-header {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons-header a {
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.social-icons-header a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  flex-grow: 1;
}

.bento-card {
  background: var(--color-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-height: 130px;
}

.bento-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 25px rgba(229,169,169,0.08);
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}

.bento-highlight {
  border: 1px solid rgba(255,166,210,0.8);
  background: linear-gradient(135deg, rgba(255,166,210,0.15) 0%, var(--color-glass) 100%);
}

.bento-icon {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.bento-wide .bento-icon {
  margin-bottom: 0;
  margin-right: 1.25rem;
}

.bento-content {
  flex-grow: 1;
}

.bento-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.bento-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.bento-arrow {
  color: var(--color-accent);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* =========================================
   VERTICAL PRO LINKS (Estilo Antigo)
   ========================================= */
.profile-container {
  width: 100%;
  max-width: 600px;
  padding: 3rem 1.5rem;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  flex-grow: 1;
}

.pro-link-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pro-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: var(--color-accent);
}

.pro-link-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pro-link-icon {
  background-color: var(--color-bg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.pro-link-text {
  display: flex;
  flex-direction: column;
}

.pro-link-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.pro-link-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.pro-link-arrow {
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.pro-link-card:hover .pro-link-arrow {
  transform: translateX(4px);
  color: var(--color-accent);
}

.highlight-card {
  background-color: var(--color-text);
  color: #FFFFFF;
  border: none;
}

.highlight-card .pro-link-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.highlight-card .pro-link-subtitle, 
.highlight-card .pro-link-arrow {
  color: rgba(255, 255, 255, 0.7);
}

.highlight-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
}

/* =========================================
   MÍDIA KIT (ALTA CONVERSÃO)
   ========================================= */
.mk-light-body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.mk-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem 1.5rem;
}

.mk-nav {
  padding: 2rem 0;
}

.mk-back-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.mk-back-nav:hover {
  color: var(--color-accent);
}

.mk-section {
  margin-bottom: 5rem;
}

.mk-section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  font-weight: 500;
}

.mk-section-title i {
  color: var(--color-accent);
  font-style: italic;
}

/* Animations - Apple Style */
.fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(10px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* Hero Section */
.mk-hero {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .mk-hero {
    flex-direction: row;
    justify-content: space-between;
  }
}

.mk-hero-content {
  flex: 1;
}

.mk-hero-title {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.mk-hero-title i {
  color: var(--color-accent);
  font-style: italic;
}

.mk-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.mk-hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.mk-hero-image-container {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.mk-hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 20px;
  z-index: -1;
}

.mk-hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Buttons */
.mk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-accent);
  color: #FFF;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px var(--color-accent-glow);
}

.mk-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px var(--color-accent-glow);
}

.mk-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #FFF;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mk-btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Authority Stats */
.mk-authority {
  background: #FFF;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
}

.mk-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
}

.mk-stat-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.mk-stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mk-stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  font-weight: 600;
}

.mk-authority-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mk-authority-text strong {
  color: var(--color-text);
}

/* Gallery */
.mk-masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.mk-masonry-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.mk-masonry-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mk-masonry-item:hover img {
  transform: scale(1.05);
}

/* Niches */
.mk-niche-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mk-niche-pill {
  background: #FFF;
  border: 1px solid var(--color-border);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.mk-niche-pill:hover {
  background: var(--color-accent);
  color: #FFF;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Audience */
.mk-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mk-audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mk-audience-card {
  background: #FFF;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.mk-audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.mk-bar-wrap {
  margin-bottom: 1.5rem;
}

.mk-bar-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.mk-bar-info strong {
  color: var(--color-text);
  font-weight: 600;
}

.mk-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.mk-fill-pink {
  height: 100%;
  background: var(--color-accent);
  border-radius: 4px;
}

.mk-age-list {
  list-style: none;
}

.mk-age-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  color: var(--color-text-muted);
}

.mk-age-list li:last-child {
  border-bottom: none;
}

.mk-age-list li strong {
  color: var(--color-text);
  font-weight: 600;
}

/* CTA Elegant (Apple Style) */
.mk-cta-elegant {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 30px 60px rgba(0,0,0,0.04);
  overflow: hidden;
}

.mk-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,166,210,0.2) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.mk-cta-title-new {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.mk-cta-desc-new {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 3rem auto;
  line-height: 1.5;
}

.mk-cta-action-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mk-btn-apple-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-text);
  color: #FFF;
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-btn-apple-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  background-color: #000;
}

.mk-btn-apple-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-btn-apple-secondary:hover {
  background-color: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.2);
}

.mk-footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* =========================================
   MOBILE OPTIMIZATIONS (Responsividade Extrema)
   ========================================= */
@media (max-width: 768px) {
  /* Links Page */
  .profile-container {
    padding: 2rem 1.2rem;
  }
  
  .profile-name {
    font-size: 2rem;
  }
  
  .pro-link-card {
    padding: 1rem 1.2rem;
  }
  
  .pro-link-title {
    font-size: 0.95rem;
  }
  
  .pro-link-subtitle {
    font-size: 0.75rem;
  }
  
  .pro-link-icon {
    width: 38px;
    height: 38px;
  }
  
  /* Media Kit */
  .mk-wrapper {
    padding: 0 1.2rem 2rem 1.2rem;
  }
  
  .mk-hero {
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .mk-hero-title {
    font-size: 3rem;
  }
  
  .mk-hero-subtitle {
    font-size: 1rem;
  }
  
  .mk-hero-desc {
    font-size: 0.95rem;
  }
  
  .mk-hero-image-container {
    max-width: 100%;
  }
  
  .mk-hero-image-container::before {
    top: -12px;
    right: -12px;
  }
  
  .mk-section {
    margin-bottom: 4rem;
  }
  
  .mk-section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .mk-authority {
    padding: 2rem 1.2rem;
  }
  
  .mk-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mk-stat-box {
    width: 100%;
  }
  
  .mk-stat-number {
    font-size: 3rem;
  }
  
  .mk-masonry-gallery {
    grid-template-columns: 1fr;
  }
  
  .mk-masonry-item img {
    height: auto;
    aspect-ratio: 4/5;
  }
  
  .mk-niche-pills {
    justify-content: center;
  }
  
  .mk-niche-pill {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
  
  .mk-audience-card {
    padding: 1.5rem 1.2rem;
  }
  
  .mk-cta-elegant {
    padding: 4rem 1.5rem;
  }
  
  .mk-cta-title-new {
    font-size: 2.5rem;
  }
  
  .mk-cta-desc-new {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .mk-cta-action-group {
    flex-direction: column;
    width: 100%;
  }
  
  .mk-btn-apple-primary,
  .mk-btn-apple-secondary {
    width: 100%;
    justify-content: center;
  }
}
