* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a202c;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-red {
    color: #FA967D;
}

.text-yellow {
    color: #FFD863;
}

.text-green {
    color: #85C384;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
}

@media (min-width: 996px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bagde {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
}


.hero {
    min-height: 100vh;
}

.hero-ebook {
    background-color: #85C384;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: 30px;
}

@media (min-width: 768px) {
    .hero-ebook {
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 0rem;
    }
}

.ebook-img {
    width: 20rem;
}

@media (min-width:786px) {
    .ebook-img {
        width: 40rem;
    }
}

.hero-texts {
    max-width: 700px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px 0;
    padding: 20px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 786px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    margin-bottom: 20px;
}

a {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: #85C384;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    color: #000;
}

a:hover {
    background: #85C384;
}

a>svg {
    width: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

a:hover svg {
    transform: translateX(5px);
}

a:active {
    transform: scale(0.95);
}

.product-showcase {
    padding: 5rem 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column - Image */
.image-column {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
}

.background-decoration {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(206, 173, 147, 0.2), rgba(17, 57, 46, 0.2));
    border-radius: 2rem;
    filter: blur(2rem);
    z-index: 0;
}

.image-container {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    z-index: 1;
}

.image-holder {
    width: 500px;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.image-holder.transitioning {
    opacity: 0;
    transform: scale(0.95);
}

#activeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
    border-radius: 1rem;
    pointer-events: none;
}

/* Right Column - Cards */
.cards-column {
    space-y: 1.5rem;
}

.header-content {
    margin-bottom: 2rem;
}

.main-title {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 768px) {
    .main-title {
        text-align: left;
    }
}

.main-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
    .main-description {
        text-align: left;
    }
}



.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Product Cards */
.product-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    background: white;
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    border-color: rgb(133, 195, 132, 0.2);
    background: rgb(133, 195, 132, 0.05);
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.product-card.active {
    border-color: var(--product-light);
    background: rgb(133, 195, 132, 0.2);
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.active-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--product-light), var(--product-dark));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card.active .active-indicator {
    opacity: 1;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-icon {
    flex-shrink: 0;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #85C384;
    color: var(--product-dark);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
}

.product-card:hover .card-icon {
    background: rgb(133, 195, 132, 0.2);
}

.product-card.active .card-icon {
    background: rgb(133, 195, 132, 0.2);
}

.card-text {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.product-card:hover .card-title,
.product-card.active .card-title {
    color: var(--product-dark);
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.card-indicator {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(133, 195, 132, 0.2);
    transition: var(--transition-smooth);
}

.product-card:hover .card-indicator {
    background: var(--product-light);
}

.product-card.active .card-indicator {
    background: var(--product-dark);
    transform: scale(1.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-column {
        order: 2;
    }

    .cards-column {
        order: 1;
    }

    .main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 3rem 1rem;
    }

    .showcase-grid {
        gap: 2rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-description {
        font-size: 1.125rem;
    }

    .image-holder {
        width: 280px;
        height: 350px;
    }

    .image-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-showcase {
        padding: 2rem 1rem;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .card-content {
        gap: 0.75rem;
    }

    .card-icon {
        padding: 0.5rem;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .image-holder {
        width: 240px;
        height: 300px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease-out;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.presentation {
    border-radius: 4px;
    margin-top: 5rem;
    height: 20rem;
    background-color: #FFD863;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
}

.brain-diagram {
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 40px;
    overflow: hidden;
}

.brain-title {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}

.brain-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.brain-illustration {
    width: 100%;
    animation: pulseBrain 3s infinite ease-in-out;
}

@keyframes pulseBrain {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.text-tip {
    position: absolute;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Posição dos textos */
.top-left {
    top: 10%;
    left: -10%;
    animation-delay: 0.2s;
}

.top-right {
    top: 10%;
    right: -10%;
    animation-delay: 0.4s;
}

.mid-left {
    top: 40%;
    left: -15%;
    animation-delay: 0.6s;
}

.mid-right {
    top: 40%;
    right: -15%;
    animation-delay: 0.8s;
}

.bottom-left {
    bottom: 10%;
    left: -10%;
    animation-delay: 1s;
}

.bottom-right {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.2s;
}

.card {
    background: rgb(133, 195, 132, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.testimonial {
    text-align: left;
    flex-shrink: 0;
    width: 400px;
    min-height: 200px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
}

.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 60s linear infinite;
    width: max-content;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.presentation-card {
    background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin: 60px auto;
    max-width: 900px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease both;
}

.presentation-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.presentation-card-icon {
    width: 48px;
    height: 48px;
    background-color: #85C384;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}


.presentation-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.presentation-card-title span {
    color: #85C384;
}

.presentation-card-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.presentation-card-description {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials-title {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .testimonials-title {
        font-size: 2rem;

    }
}

.author-section {
    background: #DDDDDA;
    border-radius: 32px;
    padding: 60px 40px;
    margin-top: 80px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 1s ease both;
    width: 95%;
}

.author-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.author-photo img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    animation: floatImg 5s ease-in-out infinite;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.author-heading {
    font-size: 2rem;
    color: #11392E;
    line-height: 1.2;
    margin-bottom: 12px;
}

.author-heading span {
    font-weight: 600;
    color: #85C384;
}

.author-heading strong {
    font-size: 1.3rem;
    color: #FA967D;
}

.author-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.author-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    max-width: 600px;
}

@media (max-width: 768px) {
    .author-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-photo {
        margin-bottom: 30px;
    }
}


.offer-card {
    background: rgb(133, 195, 132, 0.05);
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    width: 95%;
}

.offer-subtitle {
    color: #FFD863;
    /* Amarelo */
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-box {
    margin: 1.5rem 0;
}

.old-price span {
    color: #FA967D;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #85C384;
}

.installments {
    font-size: 1rem;
    color: #666;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    color: #333;
}

.offer-benefits li {
    margin-bottom: 0.5rem;
}

.bonus-info {
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 0.95rem;
    color: #444;
}

.cta-button {
    display: inline-block;
    background-color: #85C384;
    /* Verde principal */
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #6dab6a;
}

.trust-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}


.cta-button {
    background-color: #FA967D;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #FFD863;
    color: #11392E;
}

.closing-message {
    background: linear-gradient(135deg, #F9F7F2, #FFFDF9);
    padding: 80px 30px;
    text-align: center;
    border-radius: 32px;
    margin-top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease both;
    width: 95%;
}

.closing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #11392E;
    line-height: 1.4;
    margin-bottom: 20px;
}

.closing-title span {
    color: #FA967D;
    font-weight: 700;
}

.closing-title strong {
    color: #85C384;
}

.closing-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.site-footer {
    background-color: #85C384;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.95rem;
    margin-top: 100px;
}

.guarantee-section {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
    border-radius: 16px;
    color: #1a1a1a;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-badge {
    width: 250px;
    height: auto;
}

.guarantee-text h2 {
    font-size: 1.5rem;
    color: #85C384;
    /* Verde principal */
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 1rem;
    color: #333;
    max-width: 400px;
    text-align: left;
}

.guarantee-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.icon-box {
    background: rgb(133, 195, 132, 0.09);
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}

@media (min-width: 786px) {
    .icon-box {
        width: 250px;
    }
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon {
    width: 3rem;
}

.icon-box p {
    font-size: 0.95rem;
    color: #1a1a1a;
    text-align: left;
    font-weight: bold;
}