/*
Theme Name: Melina Dani - Webinário
Theme URI: 
Author: Melina Dani
Description: Landing page premium para webinário gratuito - Desbloqueie Sua Prosperidade
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: melina-webinar

Landing page premium com fundo azul marinho, detalhes em dourado/champagne e tipografia refinada.
*/

/* ============================
   RESET & BASE
   ============================ */

:root {
  --gold: #c9a84c;
  --gold-light: #d4b86a;
  --gold-dark: #a68a3a;
  --navy-deep: #060a14;
  --navy: #0a1022;
  --navy-light: #131d33;
  --navy-lighter: #1c2940;
  --text-main: #ffffff;
  --text-muted: #8a94a8;
  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-card: rgba(201, 168, 76, 0.2);
  --shadow-gold: 0 4px 30px -5px rgba(201, 168, 76, 0.2);
  --shadow-card: 0 8px 32px -8px rgba(6, 10, 20, 0.5);
  --radius: 0.75rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
}

.container--medium {
  max-width: 1000px;
}

/* ============================
   UTILITIES
   ============================ */

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--text-muted);
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.uppercase-label {
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}

/* ============================
   BACKGROUNDS
   ============================ */

.bg-navy { background-color: var(--navy); }
.bg-navy-deep { background-color: var(--navy-deep); }
.bg-navy-light { background-color: var(--navy-light); }

.bg-glow-right {
  position: relative;
}
.bg-glow-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06), transparent 70%);
  pointer-events: none;
}

.bg-glow-left {
  position: relative;
}
.bg-glow-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(201, 168, 76, 0.04), transparent 60%);
  pointer-events: none;
}

.bg-glow-top {
  position: relative;
}
.bg-glow-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05), transparent 50%);
  pointer-events: none;
}

.bg-glow-bottom {
  position: relative;
}
.bg-glow-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.06), transparent 60%);
  pointer-events: none;
}

/* ============================
   CTA BUTTON
   ============================ */

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px -5px rgba(201, 168, 76, 0.4);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-helper {
  color: var(--text-main);
  font-size: 0.9rem;
  margin-top: 0.9rem;
  max-width: 36rem;
}

/* ============================
   CARDS
   ============================ */

.card {
  background-color: rgba(19, 29, 51, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.card--gold-border {
  border-color: var(--border-card);
}

.card--hover:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
}

.card--highlight {
  border-color: var(--border-card);
  box-shadow: var(--shadow-gold);
  padding: 2.5rem;
  text-align: center;
}

/* ============================
   SECTION SPACING
   ============================ */

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

/* ============================
   1. HERO SECTION
   ============================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__content {
  order: 2;
}

@media (min-width: 1024px) {
  .hero__content {
    order: 1;
  }
}

.hero__headline {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
}

.hero__subheadline {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero__date-highlight {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.hero__date-highlight strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.hero__date-highlight p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero__image-wrap {
  order: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero__image-wrap {
    order: 2;
  }
}

.hero__image-container {
  position: relative;
}

.hero__image {
  width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .hero__image {
    width: 320px;
  }
}

@media (min-width: 1024px) {
  .hero__image {
    width: 380px;
  }
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__floating-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: rgba(19, 29, 51, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-gold);
}

@media (min-width: 768px) {
  .hero__floating-card {
    left: -2rem;
  }
}

.hero__floating-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.hero__floating-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================
   2. EMOTIONAL SECTION
   ============================ */

.emotional__text {
  max-width: 700px;
  margin: 0 auto;
}

.emotional__text p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 1.5rem;
}

.emotional__quote {
  color: var(--text-main) !important;
  font-weight: 500;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
  padding-left: 1.5rem;
}

.emotional__quote em {
  font-style: italic;
}

/* ============================
   3. BELIEF BREAK SECTION
   ============================ */

.belief__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.belief__myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .belief__myths-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.belief__myth-card {
  background: rgba(19, 29, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.belief__myth-card svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin: 0 auto 0.75rem;
}

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

.belief__highlight-card {
  margin-bottom: 3rem;
}

.belief__highlight-card p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
}

.belief__truths {
  max-width: 700px;
  margin: 0 auto;
}

.belief__truths > p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 1.5rem;
}

.belief__truths-list {
  list-style: none;
}

.belief__truths-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.belief__truths-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ============================
   4. DEEP LAYER SECTION
   ============================ */

.deep__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
}

.deep__patterns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .deep__patterns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.deep__pattern-item {
  background: rgba(19, 29, 51, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
}

.deep__pattern-item .arrow {
  color: var(--gold);
  margin-right: 0.5rem;
}

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

.deep__closing p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
}

.deep__closing-highlight {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem) !important;
  font-style: italic;
  color: var(--text-main) !important;
  padding-top: 1rem;
}

/* ============================
   5. CENTRAL TRUTH SECTION
   ============================ */

.truth__card {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
}

@media (min-width: 768px) {
  .truth__card {
    padding: 3.5rem;
  }
}

.truth__card p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.truth__card .truth__final {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold);
  font-weight: 600;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ============================
   6. WEBINAR INVITE SECTION
   ============================ */

.invite__details {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.invite__details p {
  margin-bottom: 0.25rem;
}

.invite__details .invite__strong {
  color: var(--text-main);
  font-weight: 500;
}

.invite__date-card,
.final-cta__date {
  background: rgba(19, 29, 51, 0.82);
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  margin: 0 auto 2rem;
  max-width: 34rem;
  padding: 1.4rem;
}

.invite__date-card strong,
.final-cta__date strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  margin: 0.4rem 0;
}

.invite__date-card p,
.final-cta__date p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================
   7. WEBINAR CONTENT SECTION
   ============================ */

.content__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .content__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .content__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.content__card {
  transition: all 0.3s ease;
}

.content__card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.content__card:hover svg {
  transform: scale(1.1);
}

.content__card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================
   8. ABOUT SECTION
   ============================ */

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.about__image {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .about__image {
    margin: 0;
  }
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about__text p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ============================
   9. FOR YOU SECTION
   ============================ */

.foryou__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .foryou__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.foryou__card {
  height: 100%;
}

.foryou__card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.foryou__list {
  list-style: none;
}

.foryou__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.foryou__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.foryou__list--positive svg {
  color: var(--gold);
}

.foryou__list--negative svg {
  color: rgba(138, 148, 168, 0.5);
}

/* ============================
   10. VISION SECTION
   ============================ */

.vision__opening {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  text-align: center;
  margin-bottom: 2rem;
}

.vision__lines {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vision__lines p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-style: italic;
  line-height: 1.8;
}

.vision__closing {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.vision__closing strong {
  color: var(--text-main);
  font-weight: 500;
}

/* ============================
   11. FINAL CTA SECTION
   ============================ */

.final-cta__text {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.final-cta__text strong {
  color: var(--text-main);
  font-weight: 500;
}

.final-cta__text em {
  font-style: italic;
}

/* ============================
   FADE IN ANIMATION
   ============================ */

.fade-in {
  opacity: 1;
  transform: none;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in--delay-1,
.fade-in--delay-2,
.fade-in--delay-3,
.fade-in--delay-4 {
  transition-delay: 0s;
}

/* ============================
   TEXT ALIGN CENTER
   ============================ */

.text-center {
  text-align: center;
}

@supports (content-visibility: auto) {
  .section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}
