* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #475569;
    background: linear-gradient(to bottom, #fffbeb, #fafaf9, #fafafa);
    min-height: 100vh;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-pricing {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Contador */
/* FAIXA FIXA CONTADOR */
.topbar-contador{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:38px; /* faixa fina */
    background:#FD6200; /* pode trocar pela cor da LP */
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    font-size:14px;
    font-weight:600;
}

.topbar-contador-content{
    text-align:center;
}

/* Evitar que o topo da página fique escondido atrás da faixa */
body{
    padding-top:38px;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 1200px;
    margin-top: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.subheading {
    font-style: italic;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 47%;
    max-width: 600px;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.cta-button {
    background: linear-gradient(to right, #fde68a, #d6d3d1);
    color: #1e293b;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: linear-gradient(to right, #fcd34d, #a8a29e);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cta-button-final {
    width: 100%;
    background: linear-gradient(to right, #fde68a, #d6d3d1);
    color: #1e293b;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button-final:hover {
    background: linear-gradient(to right, #fcd34d, #a8a29e);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Social Proof */
.social-proof {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e7e5e4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: #64748b;
    text-align: center;
}

/* For You Section */
.for-you-section {
    padding: 2rem 1rem;
}

.card-gradient {
    background: linear-gradient(to bottom right, rgba(255, 251, 235, 0.8), rgba(250, 250, 249, 0.8));
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e7e5e4;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    color: #d97706;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Ebook Contents */
.ebook-contents {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.3);
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.chapter-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #fef3c7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: border-color 0.3s ease;
}

.chapter-card:hover {
    border-color: #fde68a;
}

.book-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.chapter-card p {
    font-size: 1rem;
    color: #475569;
}

/* Author Section */
.author-section {
    padding: 2rem 1rem;
}

.author-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.author-image {
    display: flex;
    justify-content: center;
}

.author-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.author-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.author-text p {
    color: #475569;
}

/* Transformation Section */
.transformation-section {
    padding: 2rem 1rem;
    background: linear-gradient(to bottom right, rgba(250, 250, 249, 0.5), rgba(255, 251, 235, 0.5));
}

.transformation-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e7e5e4;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sparkle-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-box {
    background: rgba(255, 251, 235, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #fde68a;
}

.highlight-box p {
    text-align: center;
    font-style: italic;
    color: #475569;
}

/* Bonus Section */
.bonus-section {
    padding: 2rem 1rem;
}

.bonus-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gift-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-card {
    background: linear-gradient(to right, rgba(255, 251, 235, 0.7), rgba(254, 242, 242, 0.7));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #fde68a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gift-icon-small {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 1rem;
    background: rgba(255, 255, 255, 0.4);
}

.pricing-card {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 251, 235, 0.9));
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e7e5e4;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-label {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon-green {
    color: #22c55e;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.guarantee-box {
    background: rgba(239, 246, 255, 0.5);
    border: 1px solid #e7e5e4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.shield-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.guarantee-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.guarantee-text {
    color: #64748b;
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: 3rem 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-name {
    color: #475569;
}

.footer-title {
    color: #64748b;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: #64748b;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d97706;
}

.footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.footer-disclaimer p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
    font-size: 1.2rem;
    line-height: 1.6   }

    .header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        height: 34px;
    }

    .cta-button {
    margin-top: -1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .chapters-grid {
        grid-template-columns: 1fr;
    }

    .author-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value {
    font-size: 2rem;
    }

    .card-gradient,
    .transformation-card,
    .pricing-card {
        padding: 2rem;
    }
    
    .cta-button-final {
    width: 100%;
    background: linear-gradient(to right, #fde68a, #d6d3d1);
    color: #1e293b;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    }

    .cta-button-final:hover {
        background: linear-gradient(to right, #fcd34d, #a8a29e);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }
    
}


/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.cta-button-final{
  display: inline-block;  /* ou block, se quiser 100% */
  text-decoration: none;
  cursor: pointer;
}

