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

:root {
    --primary-color: #3b82f6;
    --secondary-color: #a855f7;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border-color: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.heart-icon {
    color: #ec4899;
}

.header-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(59, 130, 246, 0.1) 100%);
    padding: 60px 20px;
}

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

.icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.icon {
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.highlight {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    padding: 15px 27px;
    border: none;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Allow room for optional icons inside buttons */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
}

/* What Section */
.what-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

/* Layout container for the "O que é" section: positions the image and text side-by-side on large screens */
.what-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Wrapper for the illustrative image */
.what-image-wrapper {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

/* Image styling: mirror hero image style with rounded corners and shadow */
.what-image {
  width: 100%;
  /* Display as a square image regardless of original ratio */
  aspect-ratio: 1 / 1;
  max-width: 350px;
  border-radius: 24px;
  border: 6px solid #ffffff;
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Right column container for text and icons */
.what-content {
  flex: 1 1 50%;
}

/* Heart icon above the heading */
.what-heart-icon {
  color: var(--accent-color);
  margin-bottom: 16px;
}

/* Heading aligned to the left inside the what section */
.section-title-left {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  text-align: left;
}

/* Responsive adjustments for the what section */
@media (max-width: 992px) {
  .what-container {
    flex-direction: column;
    align-items: center;
  }
  .what-image-wrapper, .what-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .what-image {
    max-width: 100%;
  }
  .section-title-left {
    text-align: center;
  }
  /* On small screens, display the description above the image */
  .what-content {
    order: 1;
    text-align: center;
  }
  .what-image-wrapper {
    order: 2;
  }
}

/* Override default benefits list styling when used inside the what-section */
.what-content .benefits-list {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.what-content .benefit-item p {
  font-size: 16px;
  line-height: 1.6;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 4px;
}

.benefit-item p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(236, 72, 153, 0.05) 100%);
    padding: 60px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    /* Lay out icon and content side by side */
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card-icon {
    /* Increase icon container size and remove background fill */
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* Remove default background so icons stand alone */
    background: transparent;
    border-radius: 50%;
    color: inherit;
}

.benefit-card-icon.green {
    /* Green check colour */
    color: #22c55e;
}

.benefit-card-icon.blue {
    /* Blue colour for users icon */
    color: #3b82f6;
}

.benefit-card-icon.yellow {
    /* Purple colour for download icon */
    color: #a855f7;
}

.benefit-card-icon.pink {
    /* Pink colour for heart icon */
    color: #ec4899;
}

/* Ensure text content uses remaining space in benefit cards */
.benefit-card-content {
    flex: 1;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    /* Testimonial cards with soft tinted background and subtle border */
    background: #f8faff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #facc15;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: left;
    gap: 12px;
    justify-content: left;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: var(--text-light);
}

/* Bonuses Section */
.bonuses-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(236, 72, 153, 0.05) 100%);
    padding: 60px 20px;
}

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

.bonus-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9d5ff;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.bonus-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bonus-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.bonus-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Bonuses section header styles */
.bonus-header {
    text-align: center;
    margin-bottom: 48px;
}

.bonus-header .bonus-icon {
    color: #a855f7;
    margin: 0 auto 16px;
    display: block;
}

/* SEÇÃO DE OFERTA */
/* Offer section background – softened yellow gradient */
.offer-section {
  /* Use a warmer yellow gradient to echo the brighter design from the second mock‑up */
  background: linear-gradient(180deg, #fef9c3 0%, #fef3c7 100%);
  padding: 60px 20px;
  text-align: center;
}

/* CARTÃO DE OFERTA */
/* Offer card container */
.offer-card {
  background: #ffffff;
  border-radius: 24px;
  /* A slightly brighter yellow border to help the card pop */
  border: 3px solid #fde047;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 48px 36px;
  max-width: 440px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* ÍCONE SUPERIOR */
  /* ÍCONE SUPERIOR */
.offer-icon {
  font-size: 56px;
  color: #facc15;
  margin-bottom: 24px;
}

/* TÍTULO */
  /* TÍTULO */
.offer-card h2 {
  /* Increase heading size for stronger hierarchy */
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* DESCRIÇÃO */
  /* DESCRIÇÃO */
.offer-card p {
  
  margin-bottom: 32px;
  line-height: 1.6;
}

/* BLOCO DE PREÇO */
/* Price box styling */
.price-box {
  background: #dcfce7;
  border: 2px solid #86efac;
  border-radius: 20px;
  padding: 20px 10px;
  /* Center the price box and limit its width like the reference */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  max-width: 320px;
}

/* Old (crossed) price – emphasise with red colour and clear strikethrough */
.old-price {
  font-size: 22px;
  /* Bright red for the crossed out original price */
  color: #ef4444;
  text-decoration: line-through;
  margin-bottom: 8px;
}

/* Label above the new price */
.price-label {
  font-size: 16px;
  /* Use the same green colour as the new price for the "Por apenas" label */
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 8px;
}

/* New price – large and bold like the second mock‑up */
.new-price {
  font-size: 65px;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
}

/* Smaller fractional part of the price */
.new-price span {
  font-size: 32px;
}

/* BOTÃO */
/* BOTÃO */
.offer-card button,
.offer-card .btn-offer {
  /* Gradient button from green to blue */
  background: linear-gradient(90deg, #16a34a, #2563eb);
  border: none;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

  .offer-card button:hover,
  .offer-card .btn-offer:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
  }

/* GARANTIA */
/* Guarantee line – green accent on icon and text */
.offer-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: #16a34a;
  font-weight: 600;
}

/* Guarantee icon inherits the green accent */
.offer-guarantee svg {
  color: inherit;
}

/* Secondary guarantee message */
.guarantee-text {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
}

/* RESPONSIVIDADE */
@media (max-width: 480px) {
  .offer-card {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .offer-card h2 {
    font-size: 20px;
  }

  .new-price {
    font-size: 36px;
  }

  .offer-card .btn-offer {
    font-size: 15px;
    padding: 12px 22px;
  }
}

/* FAQ Section */
.faq-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 80px 20px;
    backdrop-filter: blur(4px);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header svg {
    color: var(--primary-color);
    margin: 0 auto 16px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-lighter);
}

.faq-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 16px 16px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 48px 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-icon {
    color: #f472b6;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-subtitle {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .offer-card {
        padding: 32px 24px;
    }

    /* Maintain a generous font size for the promotional price on tablets */
    .new-price {
        font-size: 48px;
    }
    .new-price span {
        font-size: 28px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 16px;
    }

    .offer-card {
        padding: 24px 16px;
    }

    .offer-card h2 {
        font-size: 24px;
    }

    /* Keep the price readable on very small screens */
    .new-price {
        font-size: 40px;
    }
    .new-price span {
        font-size: 22px;
    }
}


.hero-img {
  display: block;
  margin: 30px auto;
  width: 90%;
  max-width: 700px; /* limite de largura no desktop */
  height: auto;
  border-radius: 30px;
  border: 6px solid #ffffff;
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Efeito leve ao passar o mouse (opcional) */
.hero-img:hover {
  transform: scale(1.02);
}

/* Responsivo para tablets e celulares */
@media (max-width: 768px) {
  .hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    border-width: 4px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
  }
}

/* -----------------------------------------------------------------
 * Custom utility classes and callout styles
 * These classes are used in the "O que é o Pequenos Discípulos" section
 * to highlight specific words and create a special callout card.
 */

/* Highlighted blue text (for the product name) */
.blue-text {
  color: var(--primary-color);
  font-weight: 600;
}

/* Highlighted green text (for key virtues) */
.green-text {
  color: var(--success-color);
  font-weight: 600;
}

/* Special callout for the third item in the "O que é" section */
.benefit-item.special {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  padding: 20px;
}

.benefit-item.special .benefit-icon {
  color: var(--warning-color);
}
