/* 
 * Curso de Arte com Resina - Landing Page
 * Design fielmente recriado a partir das imagens fornecidas
 * Fonte: Poppins (substitui tipografia original)
 */

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.promo-badge {
    background: linear-gradient(135deg, #FFB800, #FFA500);
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.lightning-icon {
    width: 24px;
    height: 24px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    max-width: 1000px;
    margin: 0 auto;
}

.text-highlight {
    color: #FFB800;
}

.hero-image-wrapper {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Promo Section */
.promo-section {
    padding: 50px 20px;
    background-color: #fff;
}

.promo-card {
    background: #f8f8f8;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promo-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
}

.price-badge {
    background: #00C853;
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.price {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
}

/* Course Info Section */
.course-info-section {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 20px;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
}

.certificate-title {
    text-align: center;
    margin-top: 30px;
}

/* Certificate Section */
.certificate-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.certificate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.certificate-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.certificate-description {
    font-size: 16px;
    font-style: italic;
    color: #333;
    line-height: 1.7;
}

.certificate-description strong {
    font-weight: 700;
    font-style: normal;
}

.certificate-image-wrapper {
    max-width: 600px;
}

.certificate-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing-section {
    padding: 70px 20px;
    background-color: #fff;
}

.pricing-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card-recommended {
    border-color: #7B2CBF;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(123, 44, 191, 0.15);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #7B2CBF;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.plan-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.product-image-wrapper {
    margin-top: 15px;
}

.product-thumbnail {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}

.card-body {
    flex: 1;
    padding: 25px 0;
}

.course-name {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.access-type {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #00C853;
    margin-bottom: 20px;
}

.access-lifetime {
    color: #00C853;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.feature-included {
    color: #1a1a1a;
}

.feature-not-included {
    color: #999;
}

.card-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price-large {
    font-size: 48px;
    font-weight: 900;
    color: #00C853;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.btn-success {
    background: #00C853;
    color: white;
}

.btn-success:hover {
    background: #00A044;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

.btn-success:active {
    transform: translateY(0);
}

.plan-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.recommended-text {
    font-size: 13px;
    font-weight: 700;
    color: #FFB800;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.stars-large {
    color: #FFB800;
    font-size: 36px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.reviews-link {
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    gap: 15px;
}

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

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

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

.video-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-placeholder img {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 70px 20px;
    background-color: #f5f5f5;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFB800;
    margin-bottom: 10px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-answer {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

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

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

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

    .price {
        font-size: 40px;
    }

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

    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certificate-text {
        order: 2;
    }

    .certificate-image-wrapper {
        order: 1;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .promo-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .lightning-icon {
        width: 20px;
        height: 20px;
    }

    .price-large {
        font-size: 40px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 14px;
    }
}
