/* ============================================
   VARIABLES & RESET
   Paleta do Brandbook: Dra. Tuany Lannes
   Primárias: #BF897F #DAC2B2 #F7F2E0 #FFA9AA
   Tipografia: Libre Baskerville + Poppins
   ============================================ */
:root {
  /* Brand Primary */
  --brand-rose: #BF897F;
  --brand-sand: #DAC2B2;
  --brand-cream: #F7F2E0;
  --brand-coral: #FFA9AA;

  /* Extended palette */
  --rose-light: #d4a59d;
  --rose-lighter: #ebd3cf;
  --rose-dark: #a67068;
  --coral-light: #ffc4c5;
  --coral-lighter: #ffe0e0;
  --coral-dark: #e88e8f;
  --sand-light: #e8d8cb;
  --sand-lighter: #f2ebe3;
  --cream-light: #faf7ed;
  --cream-dark: #ede7ce;

  /* Neutral */
  --white: #ffffff;
  --gray-50: #fafaf8;
  --gray-100: #f5f4f2;
  --gray-200: #e8e6e3;
  --gray-300: #d4d1cc;
  --gray-500: #8a8580;
  --gray-600: #6b665f;
  --gray-700: #4a4640;
  --gray-800: #2d2a27;
  --gray-900: #1a1816;

  /* Semantic */
  --bg-primary: var(--white);
  --bg-warm: var(--cream-light);
  --bg-accent: var(--brand-cream);
  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-display: 'Libre Baskerville', 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 42, 39, 0.05);
  --shadow-md: 0 4px 12px rgba(45, 42, 39, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 42, 39, 0.1);
  --shadow-xl: 0 16px 50px rgba(45, 42, 39, 0.12);
  --shadow-brand: 0 4px 20px rgba(191, 137, 127, 0.25);
  --shadow-coral: 0 4px 20px rgba(255, 169, 170, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-xl); }
.container-sm { max-width: 680px; margin: 0 auto; padding: 0 var(--space-lg); }

.text-accent { color: var(--brand-rose); }

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */
.bg-blob {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.12;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: var(--brand-coral);
  top: -120px;
  right: -120px;
  animation: blobFloat 25s ease-in-out infinite;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: var(--brand-sand);
  bottom: 10%;
  left: -100px;
  animation: blobFloat 30s ease-in-out infinite reverse;
}

.blob-3 {
  width: 280px;
  height: 280px;
  background: var(--brand-cream);
  top: 45%;
  right: 15%;
  animation: blobFloat 22s ease-in-out infinite;
  animation-delay: -5s;
}

.spiral-decoration {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  color: var(--brand-rose);
}

.spiral-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  left: -50px;
  animation: spiralRotate 60s linear infinite;
}

.spiral-2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: -40px;
  animation: spiralRotate 80s linear infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes spiralRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-rose), var(--brand-coral));
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(191, 137, 127, 0.45);
}

.btn-outline {
  border: 2px solid var(--brand-rose);
  color: var(--brand-rose);
  background: transparent;
}

.btn-outline:hover {
  background: var(--rose-lighter);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============================================
   SECTION TAGS & TITLES
   ============================================ */
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--rose-lighter), var(--brand-cream));
  color: var(--brand-rose);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-2xl);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(191, 137, 127, 0.08);
    transition: all var(--transition-base);
  }

  .desktop-nav.scrolled {
    box-shadow: var(--shadow-md);
    padding: var(--space-md) var(--space-2xl);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }

  .nav-logo-img {
    width: 36px;
    height: auto;
  }

  .nav-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: 0.3px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }

  .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition-fast);
    position: relative;
  }

  .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-rose), var(--brand-coral));
    border-radius: 2px;
    transition: width var(--transition-base);
  }

  .nav-links a:not(.nav-cta):hover { color: var(--brand-rose); }
  .nav-links a:not(.nav-cta):hover::after { width: 100%; }

  .nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--brand-rose), var(--brand-coral));
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-brand);
    transition: all var(--transition-base);
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(191, 137, 127, 0.45);
  }
}

/* ============================================
   DESKTOP HERO
   ============================================ */
.desktop-hero {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-hero {
    display: block;
    padding: 140px var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-light) 50%, var(--brand-cream) 100%);
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding-bottom: var(--space-4xl);
  }

  .hero-greeting {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-weight: 300;
    letter-spacing: 0.5px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--brand-rose);
    margin-bottom: var(--space-sm);
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--brand-coral);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
  }

  .hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 520px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
  }

  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero-image-frame {
    width: 380px;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--rose-lighter), var(--sand-lighter), var(--brand-cream));
    box-shadow: var(--shadow-xl);
  }

  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-placeholder {
    /* width: 65%; */
    height: auto;
    opacity: 0.4;
    filter: sepia(0.2);
  }

  .hero-image-accent {
    position: absolute;
    width: 380px;
    height: 460px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--brand-sand), var(--brand-coral));
    top: 20px;
    left: calc(50% - 170px);
    z-index: 1;
    opacity: 0.3;
  }

  .hero-wave {
    position: relative;
    margin-top: -2px;
  }

  .hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
  }
}

/* ============================================
   DESKTOP ABOUT
   ============================================ */
.desktop-about {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-about {
    display: block;
    padding: var(--space-4xl) 0;
    background: var(--brand-cream);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
  }

  .about-card-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .about-card {
    background: var(--white);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(191, 137, 127, 0.08);
  }

  .about-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(191, 137, 127, 0.2);
  }

  .about-card-icon {
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
  }

  .about-card-1 .about-card-icon { background: var(--coral-lighter); color: var(--coral-dark); }
  .about-card-2 .about-card-icon { background: var(--rose-lighter); color: var(--brand-rose); }
  .about-card-3 .about-card-icon { background: var(--brand-cream); color: var(--rose-dark); }
  .about-card-4 .about-card-icon { background: var(--sand-lighter); color: var(--brand-rose); }

  .about-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--gray-800);
  }

  .about-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
  }

  .about-text-col .section-title {
    margin-bottom: var(--space-xl);
  }

  .about-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-weight: 300;
  }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
  }

  .highlight i {
    color: var(--brand-rose);
    font-size: 0.95rem;
  }

  .about-quote {
    margin-top: var(--space-2xl);
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--brand-coral);
    background: linear-gradient(135deg, var(--coral-lighter), transparent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brand-rose);
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

/* ============================================
   DESKTOP SERVICES
   ============================================ */
.desktop-services {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-services {
    display: block;
    padding: var(--space-4xl) 0;
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-lighter);
  }

  .service-card.featured {
    border-color: var(--brand-rose);
    background: linear-gradient(180deg, var(--cream-light), var(--white));
  }

  .service-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, var(--brand-rose), var(--brand-coral));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
  }

  .service-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--rose-lighter), var(--brand-cream));
    color: var(--brand-rose);
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
    color: var(--gray-800);
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-weight: 300;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--brand-rose);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
  }

  .service-link:hover {
    gap: var(--space-md);
    color: var(--rose-dark);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ============================================
   MOBILE HEADER
   ============================================ */
.mobile-header {
  display: block;
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  text-align: center;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--white) 100%);
}

.mobile-profile {
  position: relative;
  z-index: 1;
}

.profile-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-rose), var(--brand-coral), var(--brand-sand));
  padding: 3px;
  animation: ringPulse 3s ease-in-out infinite;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cream), var(--sand-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(191, 137, 127, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(191, 137, 127, 0); }
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.3px;
}

.profile-title {
  font-size: 0.9rem;
  color: var(--brand-rose);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.profile-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brand-coral);
  margin-bottom: var(--space-md);
}

.profile-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .mobile-header { display: none; }
}

/* ============================================
   LINKS SECTION
   ============================================ */
.links-section {
  padding: var(--space-md) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}

.section-title-mobile {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
  color: var(--gray-700);
  margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
  .links-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-light) 100%);
  }

  .section-title-mobile { display: none; }

  .links-section::before {
    content: 'Links Rápidos';
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-3xl);
  }
}

.links-group {
  margin-bottom: var(--space-xl);
}

.links-group-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  padding: 0 var(--space-sm);
}

.links-group-title i {
  font-size: 0.7rem;
  color: var(--brand-coral);
}

/* Link Cards */
.link-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 18px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  transition: width var(--transition-base);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-lighter);
}

.link-card:hover::before {
  width: 4px;
  background: linear-gradient(180deg, var(--brand-rose), var(--brand-coral));
}

.link-card:active {
  transform: scale(0.98);
}

.link-card.link-featured {
  background: linear-gradient(135deg, var(--coral-lighter), var(--white));
  border-color: var(--coral-light);
  box-shadow: var(--shadow-coral);
}

.link-card.link-featured::before {
  width: 4px;
  background: linear-gradient(180deg, var(--brand-rose), var(--brand-coral));
}

.link-card.link-ebook {
  background: linear-gradient(135deg, var(--brand-cream), var(--white));
}

.link-card.link-ebook:hover {
  border-color: var(--brand-sand);
}

/* Link Icon Wraps */
.link-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.link-card:hover .link-icon-wrap {
  transform: scale(1.1);
}

.link-icon-calendar { background: linear-gradient(135deg, var(--coral-lighter), var(--coral-light)); color: var(--rose-dark); }
.link-icon-whatsapp { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #2e7d32; }
.link-icon-instagram { background: linear-gradient(135deg, var(--coral-lighter), var(--rose-lighter)); color: #c2185b; }
.link-icon-tiktok { background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); color: var(--gray-800); }
.link-icon-youtube { background: linear-gradient(135deg, #ffebee, #ffcdd2); color: #c62828; }
.link-icon-facebook { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1565c0; }
.link-icon-linkedin { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #0277bd; }
.link-icon-ebook { background: linear-gradient(135deg, var(--brand-cream), var(--cream-dark)); color: var(--rose-dark); }
.link-icon-site { background: linear-gradient(135deg, var(--rose-lighter), var(--sand-lighter)); color: var(--brand-rose); }
.link-icon-email { background: linear-gradient(135deg, var(--brand-cream), var(--sand-lighter)); color: var(--brand-rose); }
.link-icon-threads { background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); color: var(--gray-800); }
.link-icon-map { background: linear-gradient(135deg, var(--coral-lighter), var(--rose-lighter)); color: var(--coral-dark); }

.link-text {
  flex: 1;
  min-width: 0;
}

.link-title {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-800);
  line-height: 1.3;
}

.link-subtitle {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 300;
}

.link-badge-new {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-rose), var(--brand-coral));
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.link-arrow {
  color: var(--gray-300);
  font-size: 0.85rem;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

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

/* ============================================
   DESKTOP MANIFESTO
   ============================================ */
.desktop-manifesto {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-manifesto {
    display: block;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--brand-cream), var(--cream-light));
  }

  .manifesto-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .manifesto-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    border: none;
    margin: var(--space-xl) 0 var(--space-lg);
    padding: 0;
  }

  .manifesto-author {
    font-size: 0.95rem;
    color: var(--brand-rose);
    font-weight: 600;
    letter-spacing: 0.5px;
  }
}

/* ============================================
    DESKTOP TESTIMONIALS
    ============================================ */
.desktop-testimonials {
  display: block;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--white);
}

.desktop-testimonials .section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.testimonial-card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-lighter);
}

.testimonial-stars {
  margin-bottom: var(--space-md);
  color: var(--brand-coral);
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-rose), var(--brand-coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-800);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.author-photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .desktop-testimonials {
    padding: var(--space-4xl) 0;
  }

  .desktop-testimonials .section-header {
    margin-bottom: var(--space-3xl);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .testimonial-card {
    padding: var(--space-2xl);
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-lighter);
  }
}

/* Google Rating Badge */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.google-rating-badge .fa-google {
  font-size: 1rem;
  color: #4285F4;
}

.rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rating-score strong {
  font-size: 1rem;
  color: var(--gray-800);
}

.rating-stars {
  display: flex;
  gap: 1px;
  color: #FBBC04;
  font-size: 0.85rem;
}

.rating-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Google Reviews Link */
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base);
  width: 100%;
  text-align: center;
}

.google-reviews-link .fa-google {
  color: #4285F4;
}

.google-reviews-link:hover {
  border-color: #4285F4;
  color: #4285F4;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .google-reviews-link {
    margin-top: var(--space-2xl);
    padding: 12px 28px;
    font-size: 0.88rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  text-align: center;
  background: linear-gradient(180deg, var(--white), var(--brand-cream));
  border-top: 1px solid var(--cream-dark);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.footer-logo-img {
  width: 48px;
  height: auto;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-800);
  letter-spacing: 0.3px;
}

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

.footer-address {
  margin-bottom: var(--space-lg);
}

.footer-address p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  color: var(--brand-rose);
  border-color: var(--brand-rose);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.footer-powered {
  font-size: 0.72rem;
  color: var(--gray-300);
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: whatsappBounce 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (min-width: 1024px) {
  .floating-whatsapp { display: none; }
}

/* ============================================
   ANALYTICS MODAL
   ============================================ */
.analytics-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 42, 39, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.analytics-modal.active {
  display: flex;
}

.analytics-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.analytics-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.analytics-modal-content h3 i {
  color: var(--brand-rose);
}

.analytics-modal-content > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.analytics-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.analytics-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
  outline: none;
}

.analytics-form input:focus {
  border-color: var(--brand-rose);
}

.analytics-status {
  font-size: 0.85rem;
  min-height: 1.2em;
  margin-bottom: var(--space-sm);
}

.analytics-status.success { color: #2e7d32; }
.analytics-status.error { color: #c62828; }

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

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.link-card {
  opacity: 0;
  transform: translateY(15px);
  animation: slideUp 0.5s ease forwards;
}

.links-group:nth-child(1) .link-card:nth-child(2) { animation-delay: 0.05s; }
.links-group:nth-child(1) .link-card:nth-child(3) { animation-delay: 0.10s; }
.links-group:nth-child(2) .link-card:nth-child(2) { animation-delay: 0.15s; }
.links-group:nth-child(2) .link-card:nth-child(3) { animation-delay: 0.20s; }
.links-group:nth-child(2) .link-card:nth-child(4) { animation-delay: 0.25s; }
.links-group:nth-child(2) .link-card:nth-child(5) { animation-delay: 0.30s; }
.links-group:nth-child(2) .link-card:nth-child(6) { animation-delay: 0.35s; }
.links-group:nth-child(3) .link-card:nth-child(2) { animation-delay: 0.40s; }
.links-group:nth-child(4) .link-card:nth-child(2) { animation-delay: 0.45s; }
.links-group:nth-child(4) .link-card:nth-child(3) { animation-delay: 0.50s; }
.links-group:nth-child(4) .link-card:nth-child(4) { animation-delay: 0.55s; }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  .desktop-layout { display: none; }

  body {
    background: linear-gradient(180deg, var(--brand-cream) 0%, var(--white) 25%, var(--white) 75%, var(--cream-light) 100%);
  }

  .bg-blob { opacity: 0.08; }
  .spiral-decoration { display: none; }
}

@media (min-width: 1024px) {
  .container-sm {
    max-width: 640px;
  }

  .link-card {
    padding: 16px 22px;
    border-radius: var(--radius-md);
  }

  .link-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .link-title { font-size: 0.95rem; }
  .link-subtitle { font-size: 0.82rem; }
}

@media (min-width: 1280px) {
  .container-sm {
    max-width: 700px;
  }
}

@media (hover: none) {
  .link-card:active {
    background: var(--cream-light);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
