/* Mitolyn V2 - Additional Styles (extends original page.css) */

/* Accessibility improvements for better contrast */
.benefits h2 {
    color: #059669 !important; /* Improved contrast for "Who It May Be For" */
}

.savings {
    color: #047857 !important; /* Improved contrast for savings text */
    font-weight: 700 !important;
}

.pricing-option.popular .pricing-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important; /* Better contrast */
    color: #1f2937 !important; /* Darker text for better contrast */
}

/* Hero Section Adjustments */
.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.disclosure {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.disclosure small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Ingredients Grid */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ingredient-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-4px);
}

.ingredient-item img {
    border-radius: 50%;
    margin-bottom: 1rem;
}

.ingredient-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.ingredient-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #6b7280;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

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

.benefit-item li::before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #374151;
}

.testimonial-content cite {
    color: #6b7280;
    font-size: 0.9rem;
}

.results-note {
    text-align: center;
    margin-top: 1rem;
}

.results-note small {
    color: #6b7280;
    font-style: italic;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-links {
    margin-bottom: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer small {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-copyright {
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-copyright small {
    color: #f3f4f6;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ingredient-item,
    .benefit-item,
    .testimonial-item,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Header Order Button - Copiado da página Mitolyn */
.header-order-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
    animation: intensePulse 1.5s infinite;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.header-order-btn:hover {
    background: linear-gradient(135deg, #ff7b2b 0%, #ff5722 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    animation: none;
}

.header-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    animation: shimmer 3s infinite;
}

.header-order-btn:hover::before {
    left: 100%;
    animation: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes intensePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 0 rgba(255, 140, 66, 0.7);
        border-color: rgba(255, 140, 66, 0.3);
    }
    25% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6), 0 0 0 10px rgba(255, 140, 66, 0.3);
        border-color: rgba(255, 140, 66, 0.6);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 20px 50px rgba(255, 140, 66, 0.8), 0 0 0 20px rgba(255, 140, 66, 0.1);
        border-color: rgba(255, 140, 66, 0.8);
    }
    75% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6), 0 0 0 10px rgba(255, 140, 66, 0.3);
        border-color: rgba(255, 140, 66, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 0 rgba(255, 140, 66, 0.7);
        border-color: rgba(255, 140, 66, 0.3);
    }
}

/* Responsive para o botão */
@media (max-width: 768px) {
    .header-order-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}