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

:root {
    --primary-blue: #4a6bff;
    --light-blue: #6d8bff;
    --pink: #ff6b8b;
    --light-pink: #ffa5b8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-pink: linear-gradient(135deg, var(--pink) 0%, var(--light-pink) 100%);
    --gradient-mixed: linear-gradient(135deg, var(--primary-blue) 0%, var(--pink) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

/* Header Simplificado */
.header {
    background: var(--white);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
}

.logo i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 28px;
}

.logo-highlight {
    color: var(--pink);
    margin-left: 5px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gradient-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--border-radius);
}

.btn-large i {
    margin-right: 10px;
}

.btn-purchase {
    background: var(--gradient-mixed);
    color: var(--white);
    padding: 25px 50px;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    text-decoration: none;
}

.btn-purchase:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 107, 255, 0.3);
}

.btn-purchase small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.05) 0%, rgba(74, 107, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--gradient-blue);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-pink);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.highlight {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Imagem quadrada e GRANDE abaixo do título */
.hero-logo {
    margin: 40px 0;
    text-align: center;
}

.logo-image {
    width: 500px;
    height: 500px;
    max-width: 90vw;
    max-height: 90vw;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 12px solid white;
    object-fit: contain;
    background: white;
    padding: 10px;
    transition: all 0.4s ease;
}

.logo-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
}

.feature i {
    color: var(--pink);
    margin-right: 10px;
    font-size: 18px;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.05) 0%, rgba(74, 107, 255, 0.05) 100%);
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1100px;
}

.step {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 20px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.step:nth-child(1) {
    border-top-color: var(--primary-blue);
}

.step:nth-child(2) {
    border-top-color: var(--pink);
}

.step:nth-child(3) {
    border-top-color: var(--primary-blue);
}

.step:nth-child(4) {
    border-top-color: var(--pink);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-mixed);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
}

.step:nth-child(1) .step-icon {
    background: var(--gradient-blue);
}

.step:nth-child(2) .step-icon {
    background: var(--gradient-pink);
}

.step:nth-child(3) .step-icon {
    background: var(--gradient-blue);
}

.step:nth-child(4) .step-icon {
    background: var(--gradient-pink);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

.delivery-image {
    max-width: 800px;
    margin: 60px auto 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.delivery-image img {
    width: 100%;
    display: block;
}

/* REMOVIDO: .image-note (a nota que estava em cima da imagem) */

/* Sections comuns */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid transparent;
}

.benefit-card:nth-child(1) {
    border-top-color: var(--primary-blue);
}

.benefit-card:nth-child(2) {
    border-top-color: var(--pink);
}

.benefit-card:nth-child(3) {
    border-top-color: var(--primary-blue);
}

.benefit-card:nth-child(4) {
    border-top-color: var(--pink);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
}

.benefit-card:nth-child(1) .benefit-icon {
    background: var(--gradient-blue);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: var(--gradient-pink);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: var(--gradient-blue);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: var(--gradient-pink);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.benefit-card p {
    color: var(--gray);
}

/* Objectives Section */
.objectives {
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(255, 107, 139, 0.05) 100%);
}

.objectives-list {
    max-width: 800px;
    margin: 0 auto;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.objective-item:hover {
    transform: translateX(10px);
}

.objective-item i {
    color: var(--pink);
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.objective-item span {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.offer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-mixed);
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transform: rotate(10deg);
    box-shadow: var(--shadow);
}

.price-container {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(255, 107, 139, 0.05) 100%);
    border-radius: var(--border-radius);
}

.old-price {
    font-size: 1.5rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.new-price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1;
    margin: 10px 0;
}

.new-price .currency {
    font-size: 3rem;
    vertical-align: top;
}

.new-price .decimal {
    font-size: 3rem;
}

.price-description {
    color: var(--gray);
    font-size: 1.1rem;
}

.bonuses {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.05) 0%, rgba(74, 107, 255, 0.05) 100%);
    border-radius: var(--border-radius);
}

.bonuses h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bonus-item i {
    color: var(--pink);
    margin-right: 15px;
    font-size: 20px;
}

/* Botão de Compra */
.purchase-button {
    margin: 40px 0;
}

/* Métodos de Pagamento */
.payment-methods {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(255, 107, 139, 0.05) 100%);
    border-radius: var(--border-radius);
}

.payment-methods h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: var(--gray);
}

.payment-icons i {
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-blue);
}

.guarantee {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(255, 107, 139, 0.05) 100%);
    border-radius: var(--border-radius);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.guarantee p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Feedback Section */
.feedback-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.feedback-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.feedback-image img {
    width: 100%;
    display: block;
}

.testimonials {
    flex: 1;
    min-width: 300px;
}

.testimonial {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: var(--white);
    padding: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    background: #f8f9fa;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-logo i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 32px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 1200px) {
    .logo-image {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .new-price {
        font-size: 4rem;
    }
    
    .logo-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-content {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 3.5rem;
    }
    
    .new-price .currency,
    .new-price .decimal {
        font-size: 2.5rem;
    }
    
    .feedback-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-icons {
        font-size: 1.5rem;
        gap: 15px;
    }
    
    .btn-purchase {
        padding: 20px 30px;
        font-size: 20px;
    }
    
    .logo-image {
        width: 350px;
        height: 350px;
        border-width: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .discount-badge {
        position: static;
        transform: none;
        margin-top: 15px;
        display: inline-block;
    }
    
    .offer-header {
        text-align: center;
    }
    
    .btn-purchase {
        font-size: 18px;
        padding: 18px 25px;
    }
    
    .btn-purchase small {
        font-size: 12px;
    }
    
    .payment-icons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .logo-image {
        width: 300px;
        height: 300px;
        border-width: 8px;
        border-radius: 20px;
    }
}