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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

/* Floating Navigation Styles */
.floating-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-nav-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3988B1;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(57, 136, 177, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-nav-toggle:hover {
    background: #2c5f7a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(57, 136, 177, 0.6);
}

.floating-nav-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.floating-nav-link:hover {
    background: #f8f9fa;
    color: #3988B1;
    transform: translateX(5px);
}

.floating-nav-link i {
    width: 20px;
    text-align: center;
    color: #3988B1;
}

.floating-nav-link span {
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 80px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}
.hero-content {
    max-width: 100%;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.hero-image-container {
    flex: 0 0 auto;
    margin: 0;
    background: transparent;
    border: none;
    padding: 0;
}

.hero-title {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.highlight {
    color: #3988B1;
    display: block;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0px;
    color: #8B4513;
    line-height: 1.4;
}

.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 0px;
    margin-bottom: 5px;
    color: #666;
    line-height: 1.4;
}

.cta-button {
    background: #5ba3d4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(91, 163, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #4a8bb8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 163, 212, 0.4);
    scale: 1.02;
}

.cta-button.secondary {
    background: #f8f9fa;
    color: #5ba3d4;
    border: 2px solid #5ba3d4;
    box-shadow: 0 4px 15px rgba(91, 163, 212, 0.2);
}

.cta-button.secondary:hover {
    background: #e9ecef;
    color: #4a8bb8;
    border-color: #4a8bb8;
    box-shadow: 0 6px 20px rgba(91, 163, 212, 0.3);
    transform: translateY(-2px);
    scale: 1.02;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3988B1, #2c5f7a);
    box-shadow: 0 6px 20px rgba(57, 136, 177, 0.4);
    transform: scale(1.05);
    font-weight: 700;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2c5f7a, #1e4a5f);
    box-shadow: 0 8px 25px rgba(57, 136, 177, 0.5);
    transform: scale(1.08) translateY(-2px);
}

.cta-button.basic {
    background: transparent;
    color: #3988B1;
    border: 2px solid #3988B1;
    box-shadow: none;
    font-weight: 600;
}

.cta-button.basic:hover {
    background: #3988B1;
    color: white;
    box-shadow: 0 4px 15px rgba(57, 136, 177, 0.3);
    transform: scale(1.02) translateY(-2px);
}


.floating-element {
    position: absolute;
    font-size: 2rem;
    color: #3988B1;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    top: 40%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Examples Carousel Section */
.examples-carousel-section {
    background: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.examples-carousel-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
}



.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Problem Section */
.problem-section {
    background: #3988B1;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    width: 100%;
    height: auto;
    animation: wave-animation 6s ease-in-out infinite;
}

.wave-top {
    top: 0;
    animation-delay: 0s;
}

.wave-bottom {
    bottom: 0;
    animation-delay: 3s;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    25% {
        transform: translateX(-10px) scaleY(1.1);
    }
    50% {
        transform: translateX(0) scaleY(0.9);
    }
    75% {
        transform: translateX(10px) scaleY(1.05);
    }
}

.problem-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.problem-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    opacity: 0.9;
}

.solution-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: #F5F1E8;
    padding: 60px 0;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #2c2c2c;
    line-height: 1.6;
}

/* Benefits2 Section */
.benefits2 {
    margin-top: 30px;
}

.benefits2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits2 li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2c2c2c;
}

.benefits2 li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.benefits2 li i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-tagline {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #666;
}

.guide-includes h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

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

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

.include-item i {
    font-size: 1.5rem;
    color: #3988B1;
    margin-top: 5px;
}

.include-item p {
    color: #2c2c2c;
    line-height: 1.5;
    font-size: 1.1rem;
}

.purchase-btn {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #F5F1E8;
    padding: 60px 0;
}

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

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-subtitle strong {
    color: #3988B1;
    font-weight: 600;
}

.rating {
    color: #3988B1;
    font-size: 2rem;
    font-weight: 700;
}

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

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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



.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    justify-content: center;
    align-items: center;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
    line-height: 1;
}

.testimonial-card .stars i {
    color: #FFD700 !important;
}

.testimonials-section .stars i {
    color: #FFD700 !important;
}

.testimonial-text .stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

/* Garantir que elementos flutuantes não interfiram com depoimentos */
.testimonials-section {
    position: relative;
    z-index: 1;
}

.testimonials-section .floating-element {
    display: none;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #3988B1;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Novos estilos para depoimentos com imagens */
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
    text-align: center;
}

.testimonial-text {
    flex: 1;
    width: 100%;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #3988B1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.author-info strong {
    color: #3988B1;
    font-size: 1.1rem;
    margin: 0;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Popular Choice Indicator */
.popular-choice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(57, 136, 177, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(57, 136, 177, 0.2);
}

.popular-choice i {
    color: #3988B1;
    font-size: 1rem;
}

.popular-choice span {
    color: #3988B1;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: #3988B1;
    padding: 20px;
    color: white;
}

.benefits-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.3;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.journey-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.journey-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.fruit-metaphor {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.fruit-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer {
    font-size: 1rem !important;
    font-style: italic;
    opacity: 0.9;
}

/* Bonus Section Styles */
.bonus-section {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    padding: 80px 60px;
    color: white;
    text-align: center;
    border-radius: 25px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.bonus-highlight {
    color: #93c5fd;
    display: block;
    margin-bottom: 5px;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.progress-text {
    color: white;
}

.progress-percentage {
    color: white;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 98%;
    height: 100%;
    background: #93c5fd;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.bonus-items {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.bonus-item i {
    color: #93c5fd;
    font-size: 1.2rem;
    min-width: 20px;
}

.bonus-item span {
    color: white;
    line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
    background: #F5F1E8;
    padding: 80px 0;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    font-size: 4rem;
    color: #3988B1;
    margin-bottom: 20px;
}

.guarantee-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
    color: #3988B1;
}

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

.faq-item {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(57, 136, 177, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #F5F1E8;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #3988B1;
    color: white;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    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: 300px;
}

.faq-answer p {
    padding: 25px;
    color: #666;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    background: #F5F1E8;
    padding: 60px 0;
}

.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.contact-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3988B1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3988B1;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-content p {
    margin-bottom: 20px;
    color: #ccc;
}

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

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

.footer-links a:hover {
    color: #3988B1;
}



/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        bottom: 15px;
        right: 15px;
    }

    .floating-nav-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .floating-nav-menu {
        min-width: 180px;
        bottom: 65px;
    }

    .floating-nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .floating-nav-link span {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 90px 0 50px;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        order: 2;
    }

    .hero-image-container {
        order: 1;
        margin: 0 auto;
    }

    .hero-text .cta-section {
        text-align: center;
        margin-top: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
        color: #2c2c2c;
        font-weight: 700;
    }
    
    .examples-carousel-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .carousel-container {
        max-width: 300px;
    }
    
    .carousel-slide img {
        height: 400px;
    }
    

    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0;
        color: #666;
        line-height: 1.4;
    }

    .book-cover {
        width: 280px;
        margin: 0 auto;
        display: block;
    }

    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
        min-width: 280px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pricing-title {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 25px 20px;
        min-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .pricing-card .pricing-header {
        min-height: 60px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .pricing-features {
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 20px 0;
        flex: 1;
    }

    .pricing-card .cta-button {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
    }

    /* Bonus Section Mobile */
    .bonus-section {
        padding: 50px 30px;
        margin: 40px 0;
        max-width: 100%;
        border-radius: 20px;
    }

    .bonus-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .bonus-highlight {
        font-size: 1.6rem;
    }

    .progress-container {
        max-width: 350px;
        margin-bottom: 25px;
    }

    .progress-info {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 8px;
    }

    .bonus-items {
        max-width: 300px;
    }

    .bonus-item {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .include-item {
        padding: 20px;
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }

    .include-item i {
        font-size: 2rem;
        margin: 0;
    }

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

    .testimonial-card {
        padding: 25px;
        margin: 0 auto;
        max-width: 400px;
    }

    .testimonial-content {
        gap: 12px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    .author-photo {
        width: 40px;
        height: 40px;
        margin: 0;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #3988B1;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .author-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
    }

    .author-info {
        text-align: left;
        width: 100%;
    }

    .how-it-works-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .how-it-works-flow {
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }

    .step-button {
        min-width: 200px;
        text-align: center;
    }

    .step-icon {
        margin: 0;
        width: 60px;
        height: 60px;
    }

    .step-content {
        text-align: center;
        max-width: 300px;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 1rem;
        line-height: 1.5;
    }


    .problem-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .problem-text {
        font-size: 1.1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .wave {
        animation-duration: 8s;
    }

    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 450px;
        margin: 0 auto 30px;
    }
    
    .benefits2 li {
        font-size: 1rem;
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .benefits2 li i {
        font-size: 1.1rem;
    }


    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }

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

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

    .testimonials-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }

    .book-rating {
        margin-top: 10px;
    }

    .rating-content {
        gap: 1px;
        flex-direction: column;
    }

    .rating-score {
        font-size: 0.9rem;
    }

    .book-rating .stars i {
        font-size: 1rem;
    }

    .rating-label {
        font-size: 0.8rem;
    }

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

@media (max-width: 480px) {
    .floating-nav {
        bottom: 10px;
        right: 10px;
    }

    .floating-nav-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-nav-menu {
        min-width: 160px;
        bottom: 60px;
    }

    .floating-nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .floating-nav-link span {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 10px;
    }

    .wave {
        animation-duration: 10s;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .cta-section {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .examples-carousel-section h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .carousel-container {
        max-width: 250px;
    }
    
    .carousel-slide img {
        height: 320px;
    }
    

    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .benefits2 li {
        font-size: 0.9rem;
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .benefits2 li i {
        font-size: 1rem;
    }

    .book-cover {
        width: 220px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-button.large {
        padding: 15px 25px;
        font-size: 1rem;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pricing-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .pricing-section {
        padding: 50px 0;
    }

    .pricing-grid {
        max-width: 300px;
        gap: 20px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 20px 15px;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .pricing-card .pricing-header {
        min-height: 50px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1rem;
        text-align: center;
    }

    .pricing-features {
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 15px 0;
        font-size: 0.85rem;
        flex: 1;
    }

    .pricing-card .cta-button {
        margin-top: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
    }

    /* Bonus Section Mobile Extra Pequeno */
    .bonus-section {
        padding: 40px 20px;
        margin: 30px 0;
        border-radius: 18px;
    }

    .bonus-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .bonus-highlight {
        font-size: 1.2rem;
    }

    .progress-container {
        max-width: 250px;
        margin-bottom: 20px;
    }

    .progress-info {
        font-size: 0.85rem;
    }

    .bonus-items {
        max-width: 250px;
    }

    .bonus-item {
        font-size: 0.85rem;
        margin-bottom: 10px;
        gap: 8px;
    }

    .bonus-item i {
        font-size: 0.9rem;
    }

    .pricing-card .pricing-header h3 {
        font-size: 0.9rem;
    }

    .pricing-card .price {
        font-size: 1.4rem;
    }
    
    .pricing-card .price-integer {
        font-size: 1.8rem;
    }
    
    .pricing-card .price-decimal {
        font-size: 1rem;
    }

    .pricing-features {
        font-size: 0.8rem;
    }

    .installment-info {
        font-size: 0.8rem;
        margin-top: 6px;
    }

    .special-offer {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .upgrade-notice {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin-top: 10px;
    }

    .how-it-works-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 0.9rem;
    }

    .testimonials-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .include-item {
        padding: 10px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .include-item i {
        margin-top: 0;
    }

    .include-item p {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.show {
    opacity: 1;
    transform: translateX(0);
}


/* Container que centraliza o conteúdo */
.hero-content {
    text-align: center;
    padding: 0 15px;
}

/* Container específico para a imagem */
.hero-image-container {
    margin: 25px 0;
    background: transparent;
    border: none;
    padding: 0;
}

/* Estilo da imagem da capa do livro */
.book-cover {
    max-width: 100%;
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    filter: drop-shadow(0 0 0 transparent);
}

/* Book Rating */
.book-rating {
    text-align: center;
    margin-top: 12px;
}

.rating-content {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.book-rating .stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.rating-score {
    font-size: 1rem;
    font-weight: 700;
    color: #3988B1;
    white-space: nowrap;
}

.book-rating .stars i {
    color: #3988B1;
    font-size: 1.1rem;
}

.book-rating .stars .far {
    color: #ccc;
}

.half-star {
    position: relative;
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
}

.half-star .fas {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    overflow: hidden;
    color: #3988B1;
    font-size: 1.1rem;
}

.half-star .far {
    position: absolute;
    left: 0;
    top: 0;
    color: #ccc;
    font-size: 1.1rem;
}

.rating-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

a {
    text-decoration: none;
  }

  a:hover {
  text-decoration: none; /* só sublinha quando passar o mouse */
}

/* Botões CTA estratégicos */
.cta-section {
    text-align: center;
    margin: 30px 0;
    padding: 15px 0;
}

.hero-text .cta-section {
    text-align: left;
    margin: 25px 0 0 0;
    padding: 0;
}

.cta-section .cta-button {
    margin: 0 auto;
    display: inline-flex;
    box-shadow: 0 6px 20px rgba(91, 163, 212, 0.3);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 163, 212, 0.4);
}

/* Pricing - Design Refatorado */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	align-items: start;
	max-width: 800px;
	margin: 0 auto;
}

.pricing-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	padding: 20px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-header {
	text-align: center;
	margin-bottom: 15px;
}

.pricing-header h3 {
	font-size: 1.2rem;
	color: #3988B1;
	margin-bottom: 10px;
	font-weight: 600;
}

.price-container {
	text-align: center;
}

.original-price {
	font-size: 0.9rem;
	color: #999;
	text-decoration: line-through;
	margin-bottom: 5px;
	opacity: 0.7;
}

.price {
	font-size: 2.2rem;
	font-weight: 700;
	color: #2c2c2c;
	margin-bottom: 8px;
}

.price-integer {
	font-size: 2.5rem;
}

.price-decimal {
	font-size: 1.5rem;
}

.currency {
	font-size: 1.2rem;
	color: #3988B1;
	font-weight: 600;
}

.original-price .currency {
	color: #999;
	font-weight: normal;
}

.installment-info {
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
}

.discount-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #e74c3c;
	color: white;
	padding: 4px 8px;
	font-size: 0.8rem;
	font-weight: 700;
	border-radius: 8px;
}

.special-offer {
	font-size: 0.85rem;
	color: #e74c3c;
	font-weight: 600;
	text-align: center;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.upgrade-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
	padding: 8px 12px;
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: white;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.upgrade-notice i {
	font-size: 0.9rem;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.pricing-features {
	list-style: none;
	margin: 15px 0;
	padding: 0;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Card Básico - Design Compacto */
.pricing-card.basic-card {
	padding: 15px;
	background: #fff;
	border: 2px solid #3988B1;
}

.basic-header {
	margin-bottom: 10px;
}

.basic-header h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: #3988B1 !important;
}

.basic-features {
	margin: 10px 0;
}

.basic-features li {
	margin-bottom: 6px;
	font-size: 1rem;
}

/* Card Premium - Design Destaque */
.pricing-card.premium-card {
	padding: 25px;
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border: 2px solid #3988B1;
	transform: scale(1.02);
}

.premium-header {
	margin-bottom: 15px;
}

.premium-header h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.premium-features {
	margin: 15px 0;
}

.premium-features li {
	margin-bottom: 8px;
	font-size: 1rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}



.pricing-features li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #3988B1;
	margin-right: 8px;
	flex-shrink: 0;
}

.basic-features li::before {
	color: #3988B1 !important;
}

.pricing-card .cta-button {
	margin-top: 20px;
	width: 100%;
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.ribbon {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #3988B1;
	color: #fff;
	padding: 5px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(57, 136, 177, 0.3);
}

.pricing-trust {
	margin-top: 18px;
	display: flex;
	justify-content: center;
}

.secure-badges {
	display: block;
	max-width: 360px;
	width: 100%;
	height: auto;
	filter: saturate(1.1) hue-rotate(-8deg) brightness(1.02) contrast(1.05);
}

@media (max-width: 480px) {
	.secure-badges {
		max-width: 240px;
	}
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #ffffff;
}

.how-it-works-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
}

.how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #5ba3d4;
    border-radius: 2px;
}

.how-it-works-flow {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.flow-step {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.step-button {
    background: linear-gradient(135deg, #5ba3d4, #4a8bb8);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(91, 163, 212, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(91, 163, 212, 0.4);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.step-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

.flow-connector {
    width: 4px;
    height: 40px;
    background: #6c757d;
    border-radius: 2px;
    margin: 0 auto;
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .how-it-works-flow {
        gap: 20px;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .step-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .flow-connector {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .how-it-works-title {
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

/* Media Queries para Mobile Extra Pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .book-cover {
        width: 180px;
    }

    .cta-button.large {
        padding: 15px 25px;
        font-size: 1rem;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pricing-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .pricing-grid {
        max-width: 320px;
        gap: 15px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1rem;
    }

    .pricing-card .price {
        font-size: 1.6rem;
    }
    
    .pricing-card .price-integer {
        font-size: 2rem;
    }
    
    .pricing-card .price-decimal {
        font-size: 1.2rem;
    }

    .pricing-features {
        font-size: 0.85rem;
    }
    
    .pricing-features li {
        text-align: left;
        justify-content: flex-start;
    }
    
    .pricing-card.basic-card {
        padding: 12px;
    }
    
    .basic-header h3 {
        font-size: 1rem;
        color: #3988B1 !important;
    }
    
    .basic-features li {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .pricing-card.premium-card {
        padding: 20px;
    }
    
    .premium-header h3 {
        font-size: 1.2rem;
    }
    
    .premium-features li {
        font-size: 0.95rem;
        margin-bottom: 7px;
    }

    .how-it-works-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .step-icon {
        width: 45px;
        height: 45px;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .testimonials-header h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        max-width: 400px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .include-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .include-item i {
        margin-top: 0;
    }
}

/* Media Queries para Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .hero-text {
        text-align: left;
        flex: 1;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .book-cover {
        width: 220px;
    }

    .pricing-grid {
        max-width: 700px;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pricing-card {
        min-height: 380px;
    }

    .pricing-card .pricing-header {
        min-height: 60px;
    }

    .pricing-features {
        min-height: 100px;
    }

    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .how-it-works-flow {
        max-width: 700px;
    }

    .flow-step {
        max-width: 500px;
    }
}

/* Media Queries para Desktop */
@media (min-width: 1025px) {
    .hero {
        text-align: left;
        padding: 140px 0 100px;
    }

    .hero-content {
        text-align: left;
        max-width: 100%;
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .hero-text {
        text-align: left;
        flex: 1;
        max-width: 600px;
    }

    .hero-image-container {
        flex: 0 0 auto;
        margin: 0;
    }

    .book-cover {
        width: 350px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 40px;
    }

    .includes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .how-it-works-flow {
        max-width: 900px;
    }

    .flow-step {
        max-width: 700px;
        margin: 0 auto;
    }

    .pricing-section {
        padding: 100px 0;
    }

    .pricing-title {
        font-size: 3rem;
        margin-bottom: 60px;
    }
}

/* Melhorias de acessibilidade e performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .floating-nav,
    .cta-button,
    .secure-badges {
        display: none !important;
    }
    
    .hero {
        padding-top: 20px !important;
    }
}

/* Rating Section */
.rating-section {
    background: #F5F1E8;
    padding: 40px 0;
    text-align: center;
}

.rating-content {
    max-width: 600px;
    margin: 0 auto;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.rating-score {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-score .score {
    font-size: 3rem;
    font-weight: 700;
    color: #3988B1;
    line-height: 1;
}

.rating-score .max-score {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-text p {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.4;
}

.rating-text strong {
    color: #3988B1;
}

/* Responsive Design for Rating Section */
@media (max-width: 768px) {
    .rating-section {
        padding: 30px 0;
    }
    
    .rating-score .score {
        font-size: 2.5rem;
    }
    
    .rating-score .max-score {
        font-size: 1.3rem;
    }
    
    .rating-stars i {
        font-size: 1.3rem;
    }
    
    .rating-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .rating-section {
        padding: 25px 0;
    }
    
    .rating-score .score {
        font-size: 2rem;
    }
    
    .rating-score .max-score {
        font-size: 1.1rem;
    }
    
    .rating-stars i {
        font-size: 1.1rem;
    }
    
    .rating-text p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 20px;
        margin: 0 auto;
        max-width: 350px;
    }

    .testimonial-content {
        gap: 10px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }

    .author-photo {
        width: 60px;
        height: 60px;
        margin: 0;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #3988B1;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .author-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
    }

    .author-info {
        text-align: center;
        width: 100%;
    }

    .author-info strong {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .popular-choice {
        margin-top: 12px;
        padding: 8px;
    }

    .popular-choice span {
        font-size: 0.85rem;
    }
    
    .stars {
        gap: 2px;
        margin-bottom: 10px;
    }
    
    .stars i {
        font-size: 1rem;
    }
}

/* Testimonials Section */

/* How to Use Section */
.how-to-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
    text-align: center;
}

.how-to-steps {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.how-to-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2c2c2c;
    z-index: 1;
}

.step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    z-index: 2;
    flex-direction: row;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
}

.step:nth-child(1) .step-icon {
    background: #3498db;
}

.step:nth-child(2) .step-icon {
    background: #e74c3c;
}

.step:nth-child(3) .step-icon {
    background: #2c2c2c;
}

.step-content {
    flex: 1;
    padding: 0 30px;
    text-align: left;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3988B1;
}

.step-content p {
    font-size: 1.1rem;
    color: #2c2c2c;
    line-height: 1.5;
}





/* Responsive Design for How to Use Section */
@media (max-width: 768px) {
    .how-to-steps::before {
        left: 30px;
    }
    

    
    .step {
        flex-direction: row !important;
        margin-bottom: 30px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 0 20px;
        text-align: left !important;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .final-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .how-to-title {
        font-size: 1.8rem;
    }
    
    .how-to-steps::before {
        left: 25px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content {
        padding: 0 15px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    

}