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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

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

/* Utilitários */
.highlight {
    color: #007bff;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;    color: #007bff;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover {
    color: #007bff;
}

.nav-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.hero {
    background: linear-gradient(135deg, #007bff 0%, #6c757d 100%);x);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #007bff;
}

.nav-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #6c757d 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.hero-professional {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: #f9fafb;
}

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

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.about-card p {
    color: #6b7280;
    line-height: 1.6;
}


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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.price {
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.price-alt {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.features i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

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

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.stars i {
    margin-right: 4px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #f9fafb;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-question i {
    color: #007bff;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: 24px;
    line-height: 1.6;
    color: #6b7280;
}

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

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

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 16px;
    margin-top: 4px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo i {
    margin-right: 8px;
    color: #007bff;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    opacity: 0.8;
}

.contact-info-footer i {
    margin-right: 12px;
    color: #007bff;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: none;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .hero-image i {
        font-size: 8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

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

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

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .contact-form {
        padding: 30px 20px;
    }
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Services Section - Corrected Final */
.services-new {
    padding: 100px 0;
    background-color: #1a202c; /* Cor de fundo escura, similar à imagem */
    color: white;
}

.services-new-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-new-left {
    flex: 1;
    text-align: left;
}

.services-new-logo {
    width: 225px;
    margin-bottom: 20px;
}

.services-new-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.services-new-left p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.services-new-right {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-new-right h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 12px;
}

.services-new-list {
    list-style: none;
}

.service-new-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-new-item:last-child {
    border-bottom: none;
}

.service-new-item::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #007bff;
    margin-right: 12px;
}

@media (max-width: 768px) {
    .services-new-container {
        flex-direction: column;
        text-align: center;
    }

    .services-new-left h2 {
        font-size: 2rem;
    }

    .services-new-logo {
        margin: 0 auto 20px;
    }

    .services-new-right {
        width: 100%;
    }

    .service-new-item {
        justify-content: center;
    }
}




.plan-options {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.plan-option-item {
    flex-basis: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    text-align: center;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-option-item p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #1f2937;
}




.plan-option-item p {
    text-align: left;
    font-weight: normal;
    font-size: 1em; /* Ajustado para um tamanho mais comum */
    line-height: 1.5; /* Melhorar a legibilidade */
    color: #374151; /* Garantir a cor padrão do texto */
}

.plan-option-item p b {
    font-weight: bold;
    font-size: 1em;
}

.plan-option-item button {
    margin-bottom: 15px;
}




.pricing .section-header {
    margin-bottom: 30px; /* Reduzir o espaço abaixo do cabeçalho */
}




@media (max-width: 768px) {
    .plan-option-item {
        flex-basis: 100%;
        max-width: 100%;
    }
    .plan-features li {
        justify-content: flex-start;
    }
}




.price-display {
    margin-top: 20px;
    text-align: center;
}

.price-value {
    font-size: 1.5625em; /* Reduzido em 50% de 3.125em */
    font-weight: 700;
    color: #007bff; /* Cor de destaque */
    line-height: 1;
}}

.currency-symbol {
    font-size: 0.83em; /* Aproximadamente 1/3 de 2.5em */
    vertical-align: super;
    margin-right: 2px;
}

.price-period {
    font-size: 0.83em; /* Aproximadamente 1/3 de 2.5em */
    vertical-align: baseline;
    margin-left: 2px;
}



.plan-option-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-option-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.plan-header p {
    font-size: 1em;
    color: #6b7280;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    color: #374151;
    font-size: 1em;
    line-height: 1.4;
}

.plan-features li i {
    color: #10b981; /* Cor verde para o check */
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 3px;
}

.price-display {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
}

.currency-symbol {
    font-size: 1.25em; /* Reduzido em 50% de 2.5em */
    font-weight: 600;
    color: #007bff;
    margin-right: 5px;
}

.price-value {
    font-size: 3.125em; /* Reduzido para caber na coluna */
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.price-period {
    font-size: 1.5em; /* Ajustado para ser menor que o price-value */
    font-weight: 500;
    color: #666;
    margin-left: 5px;
}

.plan-cta {
    margin-top: auto; /* Empurra o botão para o final do card */
    width: 100%;
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .plan-option-item {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 20px; /* Espaçamento entre as colunas no mobile */
    }
}





/* Melhorias para a seção de planos */
.plan-option-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.plan-option-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.plan-header p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    color: #28a745; /* Cor verde para o checkmark */
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 3px; /* Ajuste fino para alinhamento */
}

.price-display {
    margin: 20px 0 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
}

.currency-symbol {
    font-size: 1.25em; /* Reduzido em 50% de 2.5em */
    font-weight: 600;
    color: #007bff;
    margin-right: 5px;
}

.price-value {
    font-size: 3.125em; /* Reduzido para caber na coluna */
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.price-period {
    font-size: 1.5em; /* Ajustado para ser menor que o price-value */
    font-weight: 500;
    color: #666;
    margin-left: 5px;
}

.plan-cta {
    margin-top: auto; /* Empurra o botão para o final da coluna */
    width: 80%;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

/* Responsividade */
@media (max-width: 768px) {
    .plan-option-item {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 20px; /* Espaçamento entre as colunas no mobile */
    }
}





/* Ebook Section Styles */
.ebook-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%); /* Cor de fundo atraente */
    color: white;
    text-align: center;
}

.ebook-content {
    display: flex;
    flex-direction: column; /* Padrão para mobile */
    align-items: center;
    gap: 40px;
}

.ebook-text-content {
    order: 1; /* Texto primeiro */
}

.ebook-image {
    order: 2; /* Imagem em segundo */
    flex-shrink: 0;
}

.ebook-button {
    order: 3; /* Botão em terceiro */
}

.ebook-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ebook-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-cover {
    max-width: 300px; /* Aumentado para 300px para a nova imagem do e-book */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ebook-cta {
    background: #ff6b35; /* Cor do botão de destaque */
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px; /* Botão mais arredondado */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ebook-cta:hover {
    background: #e55a2b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

@media (min-width: 769px) {
    .ebook-content {
        flex-direction: row; /* Layout em linha para desktop */
        text-align: left;
        justify-content: center;
    }

    .ebook-text-content {
        flex: 1;
        padding-right: 40px; /* Espaçamento entre texto e imagem */
        order: unset; /* Reseta a ordem para desktop */
    }

    .ebook-image {
        order: unset; /* Reseta a ordem para desktop */
    }

    .ebook-button {
        order: unset; /* Reseta a ordem para desktop */
    }

    .ebook-text h2,
    .ebook-text p {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .ebook-content {
        flex-direction: column; /* Define a direção da coluna para mobile */
    }
    .ebook-text-content {
        order: 1;
    }
    .ebook-image {
        order: 2;
    }
    .ebook-button {
        order: 3;
    }
}












