/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #dbeafe 0%, #faf5ff 100%);
    margin: 0;
  padding: 0;
}

/* Common Styles */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.content-wrapper {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Quiz Container */
.quiz-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Quiz Steps */
.quiz-step {
    display: none;
    width: 100%;
    max-width: 42rem;
    animation: fadeIn 0.5s ease-in-out;
}

.quiz-step.active {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 0;
    overflow: hidden;
}

.card-header {
    text-align: center;
    padding: 1.5rem 1.5rem 0;
}

.card-content {
    padding: 1.5rem;
}

/* Icon Styles */
.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon {
    width: 3rem;
    height: 3rem;
    stroke-width: 2;
}

.heart-icon {
    color: #ec4899;
}

.brain-icon {
    color: #488EF7;
}

.shield-icon {
    color: #10b981;
}

.check-icon {
    color: #6754bd;
}

.bonus-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.lock-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.check-icon-small {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
    fill: currentColor;
}

.guarantee-icon {
    width: 4rem;
    height: 4rem;
    color: #10b981;
    margin: 0 auto 1rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    stroke-width: 2;
}

/* Typography */
.card-title,
.header-title,
.section-title,
.upgrade-title,
.testimonials-title,
.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.content-text {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.header-subtitle {
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Content Section */
.content-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid;
}

.alert-warning {
    background-color: #fef3c7;
    border-color: #fbbf24;
    color: #92400e;
}

.alert-success {
    background-color: #d1fae5;
    border-color: #34d399;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    border-color: #f87171;
    color: #991b1b;
}

.alert-info {
    background-color: #dbeafe;
    border-color: #60a5fa;
    color: #1e40af;
}

.alert-text {
    font-weight: 500;
    margin: 0;
}

/* Options Container */
.options-container {
    margin-bottom: 1.5rem;
}

.option-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-align: left;
}

.option-btn:hover {
    background-color: #dbeafe;
    border-color: #488EF7;
    transform: scale(1.02);
}

.option-btn.selected {
    background-color: #488EF7;
    border-color: #488EF7;
    color: white;
}

.option-btn.selected:hover {
    background-color: #2563eb;
}

.option-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.option-btn.selected .option-checkbox {
    border-color: white;
    background-color: white;
}

.option-btn.selected .option-checkbox::after {
    content: '✓';
    color: #488EF7;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #488EF7;
    box-shadow: 0 0 0 3px rgba(72, 142, 247, 0.1);
}

/* Button Styles */
.button-container {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: #488EF7;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-gradient {
    background: linear-gradient(135deg, #6754bd 0%, #488EF7 100%);
    color: white;
}

.btn-gradient:hover:not(:disabled) {
    background: linear-gradient(135deg, #5b21b6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-cta {
    background: white;
    color: #6754bd;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.7;
}

.btn-cta:hover {
    background: #f3f4f6;
    color: #5b21b6;
}

.btn-locked {
    background: #e5e7eb;
    color: #6b7280;
    cursor: not-allowed;
}

.btn-locked:hover {
    background: #e5e7eb;
    color: #6b7280;
}

.btn-purchase {
    width: 100%;
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.btn-purchase:hover:not(:disabled) {
    background: linear-gradient(135deg, #5b21b6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-purchase:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Progress Indicator */
.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.progress-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: background-color 0.3s ease;
}

.progress-dot.active {
    background-color: #488EF7;
}

/* Members Area Styles */
.members-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #dbeafe 0%, #faf5ff 100%);
}

.header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-stats {
    text-align: right;
}

.stats-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.stats-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #488EF7;
}

.main-content {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section {
    margin-bottom: 2rem;
}

/* Grid Layouts */
.video-grid,
.benefits-grid,
.testimonials-grid,
.bonus-grid {
    display: grid;
    gap: 1.5rem;
}

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

.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 3rem;
}

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

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

/* Card Components */
.video-card,
.benefit-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.2s ease;
}

.video-card:hover,
.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-card {
    padding: 1.5rem;
}

.video-thumbnail {
    height: 12rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: #488EF7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-button:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.video-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-free {
    background: #10b981;
    color: white;
}

.status-premium {
    background: #f59e0b;
    color: white;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.video-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-duration {
    color: #488EF7;
    font-weight: 500;
}

/* CTA Card Styles */
.cta-card {
    background: linear-gradient(135deg, #005AB4 0%, #488EF7 100%);
    color: white;
    border: none;
    margin-bottom: 2rem;
}

.cta-content {
    padding: 2rem;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Locked Content Styles */
.locked-card {
    opacity: 0.75;
    position: relative;
}

.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locked-badge {
    background: #f59e0b;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Bonus Content Styles */
.bonus-card {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    opacity: 0.95;
}

.bonus-content {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-info {
    flex: 1;
}

.bonus-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.bonus-description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Upgrade Page Styles */
.upgrade-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #faf5ff 0%, #dbeafe 100%);
}

.upgrade-header {
    background: #488EF7;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.upgrade-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.upgrade-welcome {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    display: inline-block;
}

.upgrade-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon-container {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.benefit-info {
    flex: 1;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.benefit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefit-value {
    color: #10b981;
    font-weight: 600;
}

/* Pricing Card */
.pricing-card {
    background: white;
      width: 100%;        /* ocupa toda a largura da página */
  margin: 0;
min-height: 100vh;
}

.pricing-header {
    background: #323232;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
}

.pricing-original {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.pricing-crossed {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.pricing-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.discount-badge {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.discount-text {
    color: #92400e;
    font-weight: 600;
    font-size: 0.9375rem;
}

.pricing-final {
    margin-bottom: 1.5rem;
}

.pricing-label {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.pricing-terms {
    color: #6b7280;
}

.pricing-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

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

/* Testimonials */
.testimonials-section {
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
}

/* Guarantee Section */
.guarantee-section {
    text-align: center;
}

.guarantee-card {
    background: #d1fae5;
    border: 1px solid #34d399;
    border-radius: 0.5rem;
    padding: 2rem;
}

.guarantee-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

/* Success Page */
.success-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #dbeafe 0%, #faf5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quiz-container,
    .container {
        padding: 0.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-subtitle {
        font-size: 1rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-stats {
        text-align: center;
    }
    
    .video-grid,
    .benefits-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .upgrade-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .quiz-container,
    .container {
        padding: 0.25rem;
    }
    
    .card-header,
    .card-content {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .video-thumbnail {
        height: 8rem;
    }
    
    .play-button {
        width: 3rem;
        height: 3rem;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .cta-content {
        padding: 1.5rem;
    }
    
    .upgrade-header {
        padding: 2rem 1rem;
    }
}




    /* ABAIXO DO VÍDEO */

.lm-card{
    /* Cores principais */
    --grad-start:#7b25c1; --grad-end:#4d0b83;
    --text:#fff; --muted:#cfc9d8; --old:#b8aecd; --badge:#ff1c83;

    /* Stats */
    --s1-bg:#141e3a; --s1-bd:#254c9a; --s1-num:#52c7ff;
    --s2-bg:#0f2b20; --s2-bd:#1fa26a; --s2-num:#3cf59f;
    --s3-bg:#39220a; --s3-bd:#d29a2f; --s3-num:#ffdf5a;

    font-family: Inter,"Segoe UI",Roboto,Arial,sans-serif;
    color:var(--text);
    width:100%; max-width:720px;
    overflow:hidden;
  }

  /* TOPO */
  .lm-head{position:relative; padding:20px 22px 10px; text-align:center}
  .lm-ico{
    position:absolute; left:18px; top:14px; width:30px; height:30px; border-radius:50%;
    background: radial-gradient(closest-side,rgba(255,255,255,.25),rgba(255,255,255,.08));
    display:grid; place-items:center; box-shadow:inset 0 2px 6px rgba(0,0,0,.25);
  }
  .lm-ico::after{content:""; width:6px;height:6px;border-radius:50%; background:#ffd5ff; opacity:.9}
  .lm-title{font-weight:800; letter-spacing:.2px; font-size:18px; line-height:20px}
  .lm-sub{margin-top:6px; font-size:12px; line-height:16px; color:var(--muted)}

  /* FAIXA DO PREÇO (com respiro em cima e embaixo) */
  .lm-mid{
    position:relative;
    display:grid; grid-template-columns:1fr auto; align-items:start; gap:16px;
    margin:8px 12px 12px;               /* <-- espaço/respiro */
    border-radius:10px;
    padding:18px 16px 16px;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
  }
  .lm-mid::before{
    content:""; position:absolute; inset:0; z-index:0; border-radius:10px;
    background: #1A1A1ACC;
  }
  .lm-mid > *{position:relative; z-index:1}

  .lm-price{font-weight:900; font-size:42px; line-height:1; letter-spacing:.2px}
  .lm-note{margin-top:8px; font-size:13px; color:#eadeff}
  .lm-right{text-align:right}
  .lm-old{font-size:14px; color:var(--old); text-decoration:line-through; opacity:.9}
  .lm-badge{
    display:inline-block; margin-top:6px; padding:7px 12px; border-radius:10px;
    background:var(--badge); color:#fff; font-weight:800; font-size:12px;
    box-shadow:0 8px 18px rgba(255,28,131,.38)
  }

  /* ESTATÍSTICAS (com espaço acima) */
  .lm-stats{
    display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
    padding: 6px 16px 18px; margin-top:2px;
  }
  .lm-stat{
    border-radius:12px; padding:12px 8px 12px; text-align:center;
    border:1px solid transparent; box-shadow: 0 6px 14px rgba(0,0,0,.18);
  }
  .lm-stat .num{font-weight:900; font-size:20px; line-height:1; margin-bottom:6px}
  .lm-stat .lbl{font-size:12px; color:#e6e0f2}
  .lm-s1{background:#1A1A1ACC; border-color:var(--s1-bd)} .lm-s1 .num{color:var(--s1-num)}
  .lm-s2{background:#1A1A1ACC; border-color:var(--s2-bd)} .lm-s2 .num{color:var(--s2-num)}
  .lm-s3{background:#1A1A1ACC; border-color:var(--s3-bd)} .lm-s3 .num{color:var(--s3-num)}

  /* Ajustes finos para telas menores */
  @media (max-width:420px){
    .lm-title{font-size:17px}
    .lm-price{font-size:36px}
    .lm-stats{gap:10px}
  }


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

    .accordion-item {
        margin-bottom: 12px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
    }

    .accordion-item:hover {
        border-color: #cbd5e1;
    }

    .main-product {
        background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%);
        border: 1px solid #c7d2fe;
    }

    .accordion-button {
        width: 100%;
        padding: 20px 24px;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.2s ease;
    }

    .main-product .accordion-button {
        background: #1f2937;
        color: white;
    }

    .main-product .accordion-button:hover {
        background: #488EF7;
    }

    .accordion-button:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .button-content {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .icon {
        font-size: 32px;
    }

    .title-section h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 2px;
    }

    .main-product .title-section h3 {
        color: white;
    }

    .subtitle {
        font-size: 10px;
        font-weight: 500;
        color: #c7d2fe;
    }

    .price-section {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .price {
        font-size: 18px;
        font-weight: bold;
        text-decoration: line-through;
        color: #dc2626;
    }

    .main-product .price {
        color: #dc2626;
    }

    .chevron {
        font-size: 16px;
        transition: transform 0.2s ease;
        color: #6b7280;
    }

    .main-product .chevron {
        color: white;
    }

    .chevron.rotated {
        transform: rotate(180deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
        background-color: #f8fafc;
        border-top: 1px solid #e2e8f0;
    }

    .accordion-content.active {
        max-height: 128px;
        opacity: 1;
        padding: 16px 24px;
    }

    .accordion-content p {
        color: #4b5563;
        line-height: 1.6;
    }

    .total-value {
        margin-top: 32px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #dcfce7;
        color: #166534;
        padding: 16px 24px;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
        justify-content: center;
    }

    @media (max-width: 768px) {
        .accordion-container {
            padding: 16px;
        }
        
        .accordion-button {
            padding: 16px 20px;
        }
        
        .title-section h3 {
            font-size: 16px;
        }
        
        .price {
            font-size: 12px;
        }
        
        .icon {
            font-size: 28px;
        }
    }
