/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #faf8f5;
  --bg-warm: #f3eeea;
  --bg-card: #ffffff;
  --accent: #9e4a6c;
  --accent-light: #b8607f;
  --accent-glow: rgba(158, 74, 108, 0.1);
  --accent-dark: #7a3854;
  --text-primary: #2c2420;
  --text-secondary: #5c4f47;
  --text-muted: #9a8d85;
  --border: #e8e0d8;
  --border-light: #f0e8e0;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 111, 94, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-full {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ===== SECTION BADGE ===== */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg-warm) 0%, var(--bg-main) 60%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

/* Hero Photo */
.photo-frame {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
}

.about h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.about-text {
  max-width: 680px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 100px 0;
  background: var(--bg-warm);
}

.audience h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  max-width: 560px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.audience-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.audience-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== QUALIFICATIONS ===== */
.qualifications {
  padding: 100px 0;
}

.qual-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.qual-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qual-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.qual-marker {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.qual-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.qual-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.qual-quote {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 40px 32px;
  margin-top: 24px;
}

.qual-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.qual-quote cite {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: normal;
}

/* ===== VIRTOLOGIA ===== */
.virtologia {
  padding: 100px 0;
  background: var(--bg-warm);
}

.virtologia h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.virtologia-content {
  max-width: 720px;
}

.virtologia-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.85;
}

.virtologia-destaque {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 28px;
  font-style: italic;
  color: var(--text-primary) !important;
}

/* ===== EBOOK ===== */
.ebook {
  padding: 100px 0;
  background: var(--bg-warm);
}

.ebook-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.ebook-mockup {
  display: flex;
  justify-content: center;
}

.ebook-cover {
  width: 220px;
  height: 310px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  border-radius: 4px 12px 12px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.12), -2px 0 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.ebook-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.15), transparent);
  border-radius: 4px 0 0 4px;
}

.ebook-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.ebook-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.ebook-author {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.ebook-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.ebook-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.ebook-poesia {
  margin-bottom: 28px;
}

.ebook-poesia p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 2;
}

.ebook-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ebook-checklist li {
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.ebook-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.ebook-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.ebook-form input {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.ebook-form input::placeholder {
  color: var(--text-muted);
}

.ebook-form input:focus {
  border-color: var(--accent);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
}

.contact h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 540px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.form-aviso {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 80px 0 60px;
}

.legal-page .container {
  max-width: 720px;
}

.legal-back {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
  transition: opacity 0.2s ease;
}

.legal-back:hover {
  opacity: 0.7;
}

.legal-page h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.legal-page p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-page a {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo {
    width: 240px;
    height: 320px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .qual-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ebook-box {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ebook-checklist {
    text-align: left;
  }

  .ebook-form {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
