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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #667eea;
}

.cta-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    color: white !important;
}

/* Hero Section */
.capa-ebook {
    width: 90%;
    border-radius: 15px;
}
.hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero .title {
    padding: 0 50px;
}

.hero-text ul {
    display: grid;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-text ul li {
    text-align: left;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


/*
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    padding: 0 10%;
}
*/
.hero-text {
    text-align: center;
    padding-left: 50px;
}

.hero-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit i {
    color: #28a745;
    margin-right: 15px;
    font-size: 24px;
}

.price-section {
    margin-bottom: 40px;
}

.price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    font-size: 45px;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 5px;
}

.discount {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 20px 70px;
    text-transform: uppercase;
    border-radius: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

.cta-button i {
    margin-right: 10px;
    font-size: 20px;
}

.cta-button.large {
    font-size: 28px;
    padding: 25px 50px;
}

.guarantee {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 18px;
}

.guarantee i {
    color: #28a745;
    margin-right: 10px;
    font-size: 20px;
}

/* Hero Image */
.hero-image {
    width: 100%;
    display: flex;
    /*aspect-ratio: 16 / 9;*/
}

.hero-image iframe {
    width: 100%;
    height: 100%;
}

.ebook-mockup {
    perspective: 1000px;
}

.ebook-cover {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.ebook-cover:hover {
    transform: rotateY(-10deg) rotateX(2deg);
}

.ebook-cover i {
    font-size: 80px;
    margin-bottom: 20px;
}

.ebook-cover h3 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.ebook-cover p {
    font-size: 18px;
    opacity: 0.9;
}

.bullets {
    padding: 50px 0;
    background: white;
}

.bullets h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.bullets .about-card {
    text-align: left;
    padding-bottom: 0;
}

.bullets .about-card ul li {
    list-style: none;
    margin-bottom: 20px;
}

.bullets .about-card p {
    font-size: 22px;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card i {
    font-size: 60px;
    color: #667eea;
    margin-bottom: 20px;
}

.about-card h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-card p {
    color: #666;
    font-size: 18px;
}

/* Content Section */
.content {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.students .title {
    width: 100%;
    text-align: center;
}

.students .title h2 {
    color: #24262a;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.5rem;
}

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

.students .testimonial-student p {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.students .testimonial-student .details {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.students .testimonial-student .details img {
    display: inline-block;
    width: 60px;
    margin-bottom: 0.875rem;
    border-radius: 50%;
}

.students .testimonial-student .testimonial-author {
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.students .testimonial-student .occupation {
    color: #667eea;
    font-size: 16px;
}

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

.content h2.product {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 0;
}

.content-grid .describe-product {
    font-size: 24px;
    display: flex;
    color: #666;
    align-items: center;
}

.content-grid .capa img {
    width: 80%;
    margin: 0 10%;
}

.content-bonus {
    padding: 40px 0;
}

.content-bonus h2 {
    margin-bottom: 10px;
}

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

.content-bonus .content-item-bonus-img {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

 .content-bonus .content-item-bonus-img .bonus-dados {
    display: grid;
    text-align: center;
 }

.content-bonus .content-item-bonus-img img {
    width: 300px;
    padding: 0 10%;
}

.content-bonus .content-item-bonus-img i {
    font-size: 60px;
    color: #764ba2;
}

.content-item-bonus-img .bonus-dados .title {
    font-size: 20px;
    font-weight: bold;
}

.content-item-bonus-img .bonus-dados .price {
    font-size: 18px;
}

.content-item-bonus-img .bonus-dados .price-risk {
    text-decoration: line-through;
}

.content-bonus p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #666;
}

.garantia-dados {
    font-size: 28px;
    display: grid;
    gap: 25px;
}

.garantia-dados span .price {
    color: red;
    text-decoration: underline;
}

.garantia-dados span .price-final {
    color: #28a745;
}

.cta-default {
    margin: 100px 0 30px;
    text-align: center;
}

.cta-section .cta-bullets {
    text-align: left;
    font-size: 36px;
    font-weight: bold;
}

.cta-section .cta-bullets ul li {
    list-style: none;
    margin: 20px 0;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.cta-section .cta-bullets ul li i {
    color: #0c1d9c;
    font-size: 30px;
    margin-right: 15px;
}

.content-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-item-about-me {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    transition: transform 0.3s ease;
    font-size: 18px;
    text-align: justify;
    white-space: pre-line;
}

.content-item-about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.content-item-about-img img {
    object-fit: cover;
    border-radius: 50%;
    width: 60%;
    height: 70%;
}

.content-item:hover {
    transform: translateY(-5px);
}

.content-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.content-icon i {
    font-size: 40px;
    color: #667eea;
}

.content-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonial {
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 20px;
    margin: 0 2px;
}



/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content {
    background-color: #fff;
    border-radius: 20px;
}

.cta-content .logo {
    margin: 20px 0 5px;
    justify-content: center;
    font-size: 26px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.price-highlight {
    margin-bottom: 20px;
}

.price-highlight .price-old {
    font-size: 34px;
    opacity: 0.7;
}

.price-highlight .price-current {
    font-size: 44px;
    color: #667eea;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0 0 -30px;
}

.price-highlight .money {
    font-size: 120px;
}

.payment-methods {
    margin-bottom: 40px;
}

.payment-methods h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #764ba2;
}

.payment-item i {
    font-size: 30px;
    margin-bottom: 10px;
}

.payment-item span {
    font-size: 16px;
}

.guarantee-section {
    margin-top: 90px;
    color: white;
}

.guarantee-section i {
    font-size: 160px;
    color: #28a745;
    margin-top: 15px;
}

.guarantee-section strong {
    display: block;
    font-size: 30px;
    margin-bottom: 5px;
}

.guarantee-section p {
    font-size: 16px;
    margin: 0 0 30px;
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question h3 {
    font-size: 22px;
    margin: 0;
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.contato-info {
    padding: 0 100px;
}

.contato-info h2 {
    margin-bottom: 0px;
}

.contato-info p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contato-info p i {
    color: #667eea;
}

.contato-info p a {
    color: #666;
    text-decoration: none;
}

.contato-info p .contact {
    margin: 0 60px 0 10px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.footer p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 18px;
    }

    .nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .price-current {
        font-size: 36px;
    }

    .cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }

    .cta-button.large {
        font-size: 20px;
        padding: 18px 35px;
    }

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

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

    .content-item {
        flex-direction: column;
        text-align: center;
    }

    .content-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .payment-icons {
        gap: 20px;
    }

    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .ebook-cover {
        width: 250px;
        height: 330px;
        transform: none;
    }

    .ebook-cover:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .price-highlight .price-current {
        font-size: 42px;
    }

    .about-card,
    .content-item,
    .testimonial {
        padding: 25px 20px;
    }

    .ebook-cover {
        width: 200px;
        height: 280px;
    }

    .ebook-cover i {
        font-size: 60px;
    }

    .ebook-cover h3 {
        font-size: 24px;
    }
}