/*
Theme Name: Bobbie Goods Cristão
Theme URI: https://bobbiegoodscristao.com
Author: Seu Nome
Author URI: https://seusite.com
Description: Tema de landing page para o produto Bobbie Goods Cristão - Desenhos cristãos para colorir
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bobbie-goods-cristao
*/

/* ========================================
   CSS Variables / Design Tokens
======================================== */
:root {
  /* Colors */
  --cream: #FDF8F3;
  --cream-dark: #F5EDE4;
  --coral: #E07A5F;
  --coral-light: #F4A698;
  --coral-dark: #C4604A;
  --sage: #A8C5A0;
  --sage-light: #D4E5D0;
  --sky: #87CEEB;
  --sky-light: #B8E0F3;
  --foreground: #2D3748;
  --muted: #718096;
  --card: #FFFFFF;
  --border: #E2D5C8;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(45, 55, 72, 0.08);
  --shadow-card: 0 8px 30px rgba(45, 55, 72, 0.12);
  --shadow-cta: 0 8px 25px rgba(224, 122, 95, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

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

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

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  color: var(--coral);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(224, 122, 95, 0.45);
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn svg,
.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover svg,
.btn:hover .icon {
  transform: translateX(4px);
}

/* ========================================
   Cards
======================================== */
.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--sky-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
  padding: 5rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2rem;
  width: 5rem;
  height: 5rem;
  background: var(--sage-light);
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.6;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
  background: var(--sky-light);
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.6;
}

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

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-light);
  color: var(--foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin: 0 0 2rem;
  }
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-benefits {
    justify-content: flex-start;
  }
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-benefit svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

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

.hero-price .current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
}

.hero-price .original {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: line-through;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
}

.hero-image-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-cta);
}

.hero-floating-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-icon {
  width: 3rem;
  height: 3rem;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ========================================
   Problem Section
======================================== */
.problem {
  background: var(--cream-dark);
}

.problem-grid {
  display: grid;
  gap: 1.5rem;
}

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

.problem-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.problem-icon {
  width: 4rem;
  height: 4rem;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  opacity: 0.3;
}

/* ========================================
   Solution Section
======================================== */
.solution {
  background: var(--cream);
}

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

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

.solution-image {
  position: relative;
}

.solution-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
}

.solution-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-cta);
}

.solution-list {
  margin-top: 2rem;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.solution-check {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--foreground);
}

/* ========================================
   Benefits Section
======================================== */
.benefits {
  background: var(--cream-dark);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* ========================================
   For Who Section
======================================== */
.for-who {
  background: var(--cream);
}

.for-who-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .for-who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.for-who-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
}

.for-who-card.positive {
  border: 2px solid var(--sage);
}

.for-who-card.negative {
  border: 2px solid var(--coral-light);
}

.for-who-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.for-who-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-who-card.positive .for-who-icon {
  background: var(--sage);
}

.for-who-card.negative .for-who-icon {
  background: var(--coral-light);
}

.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* ========================================
   How It Works Section
======================================== */
.how-it-works {
  background: var(--cream-dark);
}

.steps {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
  }
}

.step {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--coral);
}

.step-number {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.875rem;
}

.step h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.step p {
  font-size: 0.875rem;
}

/* ========================================
   Offer Section
======================================== */
.offer {
  background: var(--cream);
}

.offer-card {
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.offer-grid {
  display: grid;
}

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

.offer-image {
  position: relative;
  min-height: 16rem;
}

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

.offer-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, transparent 50%);
}

@media (min-width: 768px) {
  .offer-image::after {
    background: linear-gradient(to right, var(--card) 0%, transparent 50%);
  }
}

.offer-content {
  padding: 2rem;
}

.offer-title {
  margin-bottom: 0.5rem;
}

.offer-list {
  margin: 1.5rem 0;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.offer-check {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.offer-pricing {
  margin: 1.5rem 0;
}

.offer-original {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.offer-original span:first-child {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: line-through;
}

.offer-discount {
  background: rgba(224, 122, 95, 0.1);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.offer-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
}

.offer-price .label {
  font-size: 0.875rem;
  color: var(--muted);
}

.offer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.offer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ========================================
   Objections Section
======================================== */
.objections {
  background: var(--cream-dark);
}

.objections-grid {
  display: grid;
  gap: 1.5rem;
}

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

.objection-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
}

.objection-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.objection-icon {
  width: 2rem;
  height: 2rem;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.objection-question h3 {
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ========================================
   Guarantee Section
======================================== */
.guarantee {
  background: var(--cream);
}

.guarantee-card {
  background: var(--sage-light);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 5rem;
  height: 5rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.guarantee-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--foreground);
}

.guarantee h2 {
  color: var(--foreground);
}

.guarantee p {
  color: var(--foreground);
  opacity: 0.8;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ========================================
   Final CTA Section
======================================== */
.final-cta {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 6rem;
  height: 6rem;
  background: var(--coral-light);
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.4;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: 2rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  background: var(--sky-light);
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.5;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 122, 95, 0.1);
  color: var(--coral);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.final-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--foreground);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Utilities
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none; }
}
