/*
Theme Name: Dinâmica do Amor
Description: Tema para página de vendas do produto Dinâmica do Amor - otimizado para conversão
Author: Seu Nome
Version: 1.0
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Header */
.header-rating {
    background: linear-gradient(to right, rgba(255, 182, 193, 0.1), rgba(221, 160, 221, 0.1));
    padding: 20px 0;
    text-align: center;
}

.rating-stars {
    display: inline-flex;
    gap: 5px;
    margin-right: 15px;
}

.star {
    color: #ffd700;
    font-size: 24px;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-quotes {
    font-size: 14px;
    color: #666;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05), #ffffff, rgba(221, 160, 221, 0.05));
    padding: 80px 0;
    text-align: center;
}

.hero-image {
    max-width: 320px;
    height: 240px;
    margin: 0 auto 40px;
    object-fit: contain;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(to right, #dc2626, #ea580c, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #ea580c, #dc2626);
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    color: white;
    text-decoration: none;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #16a34a;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #2563eb;
}

.feature-content h3 {
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
}

/* Products Section */
.products-section {
    background: linear-gradient(to right, rgba(255, 235, 59, 0.1), rgba(255, 152, 0, 0.1));
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 182, 193, 0.4);
}

.product-image-container {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(221, 160, 221, 0.1));
    padding: 30px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.rating-stars-small {
    display: flex;
    gap: 2px;
}

.star-small {
    color: #ffd700;
    font-size: 16px;
}

.reviews-count {
    font-size: 12px;
    color: #666;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
}

.product-cta {
    width: 100%;
    background: linear-gradient(to right, #ea580c, #dc2626);
    color: white;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-list {
    space-y: 30px;
}

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

.check-icon {
    color: #16a34a;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 18px;
}

.warning-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(234, 88, 12, 0.1));
    padding: 40px;
    border-radius: 20px;
}

.warning-title {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 20px;
}

.warning-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.warning-list {
    list-style: none;
    margin-bottom: 20px;
}

.warning-list li {
    color: #666;
    margin-bottom: 10px;
}

.warning-conclusion {
    font-size: 18px;
    font-weight: 600;
    color: #dc2626;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(to right, rgba(255, 182, 193, 0.05), rgba(221, 160, 221, 0.05));
    padding: 80px 0;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05), rgba(221, 160, 221, 0.05));
    border: 1px solid rgba(255, 182, 193, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

.author-title {
    font-size: 12px;
    color: #666;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    text-align: center;
}

.guarantee-badge {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(255, 235, 59, 0.3);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 15px;
}

.guarantee-description {
    font-size: 14px;
    color: #666;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(to right, #dc2626, #ea580c, #a855f7);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.price-main {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.price-original {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-original span {
    text-decoration: line-through;
    opacity: 0.75;
}

.urgency-text {
    font-size: 14px;
    margin-bottom: 30px;
}

.final-cta-button {
    background: white;
    color: #333;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333;
    text-decoration: none;
}

.security-text {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.closing-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}