/*
Theme Name: Argumentação Nota 1000
Theme URI: https://argumentacaonota1000.lovable.app
Author: Profa Camilla Aveiro
Description: Landing page tema para a Aula Argumentação Nota 1000
Version: 1.0
Text Domain: argumentacao-nota-1000
*/

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

:root {
  --primary: #a80010;
  --primary-light: #c4243a;
  --primary-foreground: #ffffff;
  --secondary: #e1b478;
  --secondary-foreground: #3d0008;
  --secondary-light: #faf5ee;
  --background: #ffffff;
  --foreground: #3d0008;
  --card: #ffffff;
  --muted: #f5f5f5;
  --muted-foreground: #787878;
  --border: #e8e8e8;
  --destructive: #ef4444;
  --accent-blue: #11b1ff;
  --radius: 0.75rem;
  --shadow-soft: 0 2px 20px -5px rgba(168, 0, 16, 0.1);
  --shadow-medium: 0 8px 30px -5px rgba(168, 0, 16, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Petrona', serif;
}

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

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

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

/* ========== Utilities ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }

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

.animate-fade-up {
  animation: fade-up 0.6s ease-out;
}

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

/* ========== CTA Button ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #e1b478, #c99a54);
  color: var(--secondary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px -2px rgba(225, 180, 120, 0.3);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -2px rgba(225, 180, 120, 0.5);
}

.cta-button .arrow {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

.cta-button--outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.cta-button--outline:hover {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

/* ========== Top Bar ========== */
.top-bar {
  background: var(--secondary);
  padding: 0.75rem 1rem;
  text-align: center;
}

.top-bar p {
  color: var(--secondary-foreground);
  font-weight: 500;
  font-size: 0.875rem;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 1rem;
  background-size: cover;
  background-position: center;
}

.hero .container {
  max-width: 56rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 .highlight-gold {
  background-color: #D4A574;
  color: var(--primary);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

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

.hero .subtitle {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero .badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

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

.hero .badge-item svg {
  color: var(--secondary);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.hero .micro-text {
  font-size: 0.75rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.vsl-container {
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Prova Social ========== */
.social-proof {
  padding: 5rem 1rem;
  background: var(--background);
}

.social-proof .container {
  max-width: 48rem;
}

.social-proof h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.social-proof .subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonials img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-light);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-top: 3rem;
}

.proof-badge svg {
  color: var(--secondary);
  width: 1.25rem;
  height: 1.25rem;
}

.proof-badge span {
  font-weight: 600;
  color: var(--foreground);
}

/* ========== Dor e Solução ========== */
.pain-solution {
  padding: 5rem 1rem;
  background: var(--accent-blue);
}

.pain-solution .container {
  max-width: 64rem;
  text-align: center;
}

.pain-solution h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3), -1px -1px 0 rgba(0,0,0,0.1);
}

.pain-solution h2 .text-gold {
  color: var(--secondary);
  font-weight: 800;
}

.pain-solution h2 .highlight-gold {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
}

.pain-solution .lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pain-card {
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 232, 232, 0.5);
  text-align: left;
}

.pain-card p {
  font-size: 1rem;
  color: var(--foreground);
}

/* ========== Aprendizado ========== */
.learnings {
  padding: 5rem 1rem;
  background: var(--background);
}

.learnings .container {
  max-width: 72rem;
}

.learnings h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.learnings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(232, 232, 232, 0.5);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(225, 180, 120, 0.3);
  box-shadow: var(--shadow-soft);
}

.feature-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(225, 180, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.highlight-box {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  background: rgba(225, 180, 120, 0.1);
  border: 2px solid var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
}

.highlight-box p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

/* ========== Entregáveis ========== */
.deliverables {
  padding: 5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.deliverables .container {
  max-width: 64rem;
}

.deliverables h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.deliverables h2 .text-gold {
  color: var(--secondary);
  font-weight: 800;
}

.deliverables h2 .highlight-gold {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.deliverable-item {
  background: var(--primary-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverable-item svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--secondary);
  margin: 0 auto 0.75rem;
  display: block;
}

.deliverable-item p {
  font-weight: 500;
}

/* ========== Para quem é ========== */
.target-audience {
  padding: 5rem 1rem;
  background: var(--background);
}

.target-audience .container {
  max-width: 64rem;
}

.target-audience h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

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

.audience-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.audience-card--yes {
  background: rgba(225, 180, 120, 0.05);
  border: 2px solid rgba(225, 180, 120, 0.3);
}

.audience-card--no {
  background: var(--muted);
  border: 2px solid var(--border);
}

.audience-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.audience-card .card-header .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card--yes .icon-circle {
  background: var(--secondary);
}

.audience-card--no .icon-circle {
  background: var(--destructive);
}

.audience-card .card-header .icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.audience-card--yes .icon-circle svg {
  color: var(--secondary-foreground);
}

.audience-card--no .icon-circle svg {
  color: #fff;
}

.audience-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.audience-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience-card li {
  display: flex;
  gap: 0.75rem;
}

.audience-card li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.audience-card--yes li svg {
  color: var(--secondary);
}

.audience-card--no li svg {
  color: var(--destructive);
}

/* ========== Preço ========== */
.pricing {
  padding: 5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.pricing .container {
  max-width: 56rem;
  text-align: center;
}

.pricing h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.pricing h2 .highlight-gold {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
}

.pricing .description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.price-box {
  background: var(--primary-light);
  border: 2px solid var(--secondary);
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.price-box .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.price-box .price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.price-box .terms {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Conversa Séria ========== */
.serious-talk {
  padding: 5rem 1rem;
  background: var(--background);
}

.serious-talk .container {
  max-width: 48rem;
  text-align: center;
}

.serious-talk h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.serious-talk h2 .text-gold {
  color: var(--secondary);
  font-weight: 800;
}

.serious-talk h2 .highlight-gold {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
}

.serious-talk .description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Autoridade ========== */
.authority {
  padding: 5rem 1rem;
  background: var(--accent-blue);
}

.authority .container {
  max-width: 64rem;
}

.authority-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.authority-image {
  width: 100%;
  max-width: 20rem;
}

.authority-image .image-frame {
  position: relative;
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--secondary), rgba(225, 180, 120, 0.8), rgba(225, 180, 120, 0.6));
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px -15px rgba(225, 180, 120, 0.5);
}

.authority-image img {
  border-radius: 1rem;
  width: 100%;
  display: block;
}

.authority-image .star-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-size: 1.5rem;
  color: var(--secondary-foreground);
}

.authority-image .dot-accent {
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  background: rgba(225, 180, 120, 0.8);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.authority-text {
  width: 100%;
}

.authority-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.authority-text p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* ========== FAQ ========== */
.faq {
  padding: 5rem 1rem;
  background: var(--background);
}

.faq .container {
  max-width: 48rem;
}

.faq h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: var(--radius);
  padding: 0 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  font-family: 'Petrona', serif;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-question .chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--muted-foreground);
}

.faq-item.active .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== Footer ========== */
.site-footer {
  padding: 2rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.site-footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== Media Queries ========== */
@media (min-width: 768px) {
  .hero {
    padding: 8rem 1rem;
  }

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

  .hero .subtitle {
    font-size: 1.125rem;
  }

  .hero .badges {
    flex-direction: row;
    font-size: 1rem;
  }

  .top-bar p {
    font-size: 1rem;
  }

  .social-proof h2 {
    font-size: 1.875rem;
  }

  .pain-solution h2 {
    font-size: 2.5rem;
  }

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

  .learnings h2 {
    font-size: 2.25rem;
  }

  .learnings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverables h2 {
    font-size: 2.5rem;
  }

  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target-audience h2 {
    font-size: 2.25rem;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing h2 {
    font-size: 2.5rem;
  }

  .price-box .price {
    font-size: 4.5rem;
  }

  .serious-talk h2 {
    font-size: 2.5rem;
  }

  .authority-content {
    flex-direction: row;
  }

  .authority-image {
    width: 40%;
  }

  .authority-text {
    width: 60%;
  }

  .authority-text h2 {
    font-size: 1.875rem;
  }

  .faq h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero .subtitle {
    font-size: 1.25rem;
  }

  .social-proof h2 {
    font-size: 2.25rem;
  }

  .pain-solution h2 {
    font-size: 3.5rem;
  }

  .learnings-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .deliverables h2 {
    font-size: 3.5rem;
  }

  .deliverables-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing h2 {
    font-size: 3.5rem;
  }

  .price-box .price {
    font-size: 5rem;
  }

  .serious-talk h2 {
    font-size: 3.5rem;
  }

  .authority-text h2 {
    font-size: 2.25rem;
  }

  .authority-text p {
    font-size: 1.125rem;
  }
}
