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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

* {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

/* Preserve icons from Font Awesome */
.fas, .far, .fal, .fat, .fad, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
}

i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
}

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

/* Color Variables */
:root {
    --primary-blue: #4A90E2;
    --light-blue: #87CEEB;
    --primary-white: #FFFFFF;
    --primary-green: #52C270;
    --light-green: #7DD87F;
    --secondary-blue: #2E5BBA;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    display: none;
    width: 80px;
    height: 6px;
    background: var(--primary-green);
    margin: 20px auto 0;
    border-radius: 3px;
}

.faq .section-title::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--primary-white);
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    top: 60%;
    right: 15%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-white);
    top: 80%;
    left: 20%;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    top: 30%;
    right: 30%;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-cta {
    grid-column: 1 / -1;
    text-align: center;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid var(--primary-white);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    box-shadow: var(--shadow);
}

.cta-button.primary {
    background: var(--primary-green);
    color: var(--primary-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.secondary {
    background: var(--primary-green);
    color: var(--primary-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.large {
    padding: 24px 40px;
    font-size: 1.3rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Problems Section */
.problems {
    padding: 1.5rem 0;
    background: var(--primary-blue);
}

.problems .section-title {
    color: var(--primary-white);
}

.problems .section-title::after {
    display: none;
}

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

.problems-conclusion {
    text-align: center;
    margin-top: 2rem;
}

.problems-conclusion p {
    font-size: 1.2rem;
    color: var(--primary-white);
    font-weight: 700;
    font-style: italic;
}

.problem-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 4px solid var(--light-blue);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.problem-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

/* Solid colored circles for each problem icon */
.problem-card:nth-child(1) .problem-icon {
    background: #FF6B6B; /* Red solid */
}

.problem-card:nth-child(2) .problem-icon {
    background: #4ECDC4; /* Teal solid */
}

.problem-card:nth-child(3) .problem-icon {
    background: #45B7D1; /* Blue solid */
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-light);
    font-weight: 700;
}

/* New Solution Section */
.solution-new {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    position: relative;
}

.product-title-section {
    margin-bottom: 2rem;
}

.product-title-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-title-text {
    text-align: left;
}

.product-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.product-title-image {
    text-align: center;
}

.product-main-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-title {
    text-align: left;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.solution-benefits {
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-intro {
    text-align: left;
    margin-bottom: 2.5rem;
}

.solution-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.solution-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

/* Target Audience Section */
.target-audience {
    padding: 1.5rem 0;
    background: var(--primary-blue);
}

.target-audience .section-title {
    color: var(--primary-white);
}

.target-audience .section-title::after {
    display: none;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 4px solid var(--light-blue);
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.audience-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

/* Different colors for each audience icon */
.audience-card:nth-child(1) .audience-icon {
    background: #FF6B6B; /* Red solid */
}

.audience-card:nth-child(2) .audience-icon {
    background: #4ECDC4; /* Teal solid */
}

.audience-card:nth-child(3) .audience-icon {
    background: #45B7D1; /* Blue solid */
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.audience-card p {
    color: var(--text-light);
    font-weight: 700;
}

/* Product Preview Section */
.product-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.preview-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.preview-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.preview-carousel-container {
    position: relative;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-arrow {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-arrow:hover {
    background: var(--secondary-blue);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: -25px;
}

.right-arrow {
    right: -25px;
}

/* Mobile responsive carousel arrows */
@media (max-width: 768px) {
    .preview-carousel-container {
        padding: 0 30px;
        margin: 0 auto;
    }
    
    .carousel-arrow {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        background: rgba(74, 144, 226, 0.95);
        border: 3px solid white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        line-height: 1;
    }
    
    .left-arrow {
        left: -15px;
    }
    
    .right-arrow {
        right: -15px;
    }

    .activities-description {
        margin: 25px -5px 0 -5px !important;
        padding: 25px 15px !important;
        max-width: calc(100vw - 10px) !important;
    }

}

@media (max-width: 480px) {
    .preview-carousel-container {
        padding: 0 25px;
        margin: 0 10px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        background: var(--primary-blue);
        border: 2px solid white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        line-height: 1;
    }
    
    .left-arrow {
        left: -10px;
    }
    
    .right-arrow {
        right: -10px;
    }
    
}

.preview-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.preview-item {
    display: none;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.5s ease;
    border: 3px solid var(--light-blue);
    width: 100%;
    position: relative;
}

.preview-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.carousel-instruction {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 600;
}

.activities-description {
    text-align: center;
    margin: 25px -20px 0 -20px;
    padding: 25px 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    max-width: none;
}

.activities-description p {
    margin: 0 0 15px 0;
    color: var(--text-dark);
    font-size: 16px;
}

.activities-description p:last-of-type {
    margin-bottom: 10px;
}

.activities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.activities-list span {
    background-color: var(--primary-green);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.activities-list span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dot {
    cursor: pointer;
    height: 18px;
    width: 18px;
    margin: 0 8px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background-color: var(--primary-blue);
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.dot:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.1);
}

.preview-image-placeholder {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-placeholder {
    width: 350px;
    height: 495px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.image-placeholder:hover {
    background: #f0f0f0;
    border-color: var(--primary-blue);
}

.image-placeholder i {
    font-size: 2rem;
    color: #ccc;
}

.activity-image {
    width: 350px;
    height: 495px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.activity-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .activity-image {
        width: 300px;
        height: 424px;
    }
    
    .image-placeholder {
        width: 300px;
        height: 424px;
    }
}

@media (max-width: 480px) {
    .activity-image {
        width: 280px;
        height: 396px;
    }
    
    .image-placeholder {
        width: 280px;
        height: 396px;
    }
}

.preview-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.preview-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.product-presentation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.product-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-image-slot {
    text-align: center;
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #e3f2fd;
}

.product-image-slot:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-showcase-img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-image-slot h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.solution-details {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8f4f8;
}

.solution-details h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.solution-promise {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.audience-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-block {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e3f2fd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.audience-block h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.audience-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
}

/* New Benefits Section */
.benefits-new {
    padding: 4rem 0;
    background: var(--primary-white);
}

.benefits-content {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-text {
    background: #fafbff;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e8f4f8;
}

.benefits-intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: center;
}

.benefit-point {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8f4f8;
}

.benefit-point:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-point h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-point p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    text-align: justify;
}

.benefits-image {
    position: sticky;
    top: 2rem;
    text-align: center;
}

.benefits-showcase-img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-white);
}

/* Exclusive Bonuses Section */
.exclusive-bonuses {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.bonus-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.bonus-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.bonus-image:hover img {
    transform: scale(1.05);
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bonus-content h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bonus-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .exclusive-bonuses {
        padding: 3rem 0;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .bonus-card {
        padding: 1.25rem;
    }
    
    .bonus-image {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        padding: 5px;
    }
    
    .bonus-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }
    
    .bonus-content h3 {
        font-size: 1rem;
    }
    
    .bonus-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bonuses-grid {
        padding: 0 0.5rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .bonus-image {
        height: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        padding: 5px;
    }
    
    .bonus-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }
}

/* Limited Offer Banner */
.offer-banner {
    background: var(--primary-white);
    padding: 1.5rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    background: #ff5757;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    white-space: nowrap;
    text-transform: uppercase;
}

.offer-content i {
    font-size: 1rem;
    color: white;
}

/* Product Section */
.produto {
    padding: 1.5rem 0 2rem 0;
    background: var(--primary-white);
    margin-top: 0;
}

.packages-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    margin-top: 0.5rem;
}

.package-card-new {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    overflow: visible;
}

.package-card-new.basic {
    border: 2px solid #e0e0e0;
    background: var(--primary-white);
    position: relative;
    transform: scale(1.05);
}

.package-card-new.premium {
    border: 3px solid #FFC107;
    background: var(--primary-white);
    transform: scale(1.05);
    position: relative;
}

.package-card-new.premium::before {
    content: 'MAIS VENDIDO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC107;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.package-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.package-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.discount-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.final-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.savings-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 700;
    color: var(--text-dark);
}

.features-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.basic-content {
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-green);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    margin: 8px 0;
    background: #fff8e1;
    border-radius: 8px;
    border: none;
    text-align: left;
}

.bonus-item .gift-icon {
    color: #FFC107;
    font-size: 1.2rem;
}

.bonus-item .bonus-text {
    flex: 1;
}

.bonus-item .bonus-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.bonus-item .bonus-price {
    font-size: 0.8rem;
    color: #dc3545;
    text-decoration: line-through;
    display: block;
}


.package-button {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.basic-button {
    background: var(--primary-green);
    color: var(--primary-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.basic-button.pulse-button {
    animation: pulse-basic 2s infinite;
}

@keyframes pulse-basic {
    0% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.premium-button {
    background: #FFC107;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-proof {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Pulse effect for buttons */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.premium-button.pulse-button {
    animation: pulse-premium 2s infinite;
}

@keyframes pulse-premium {
    0% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Purchase Notifications */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.purchase-notification {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards, slideOut 0.5s ease-in 4.5s forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.notification-icon {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.notification-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.notification-time {
    font-size: 0.8rem;
    color: #999;
    margin-left: auto;
}

.notification-details {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.3;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Transformation Section */
.transformation {
    padding: 6rem 0;
    background: var(--light-blue);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.before, .after {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.before {
    border: 4px solid var(--light-blue);
    background: var(--primary-white);
}

.after {
    border: 4px solid var(--light-blue);
    background: var(--primary-white);
}

.before h3, .after h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.before h3 {
    color: #ff6b6b;
}

.after h3 {
    color: var(--primary-green);
}

.before ul, .after ul {
    list-style: none;
}

.before li, .after li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 700;
}

.before i {
    color: #ff6b6b;
}

.after i {
    color: var(--primary-green);
}

.arrow {
    font-size: 3rem;
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.benefits {
    text-align: center;
}

.benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 3px solid var(--light-blue);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.benefit-item span {
    font-weight: 700;
    color: var(--text-dark);
}

/* Guarantee Section */
.guarantee {
    padding: 1rem 0 0.5rem 0;
    background: var(--primary-white);
}

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

.guarantee-item, .scarcity-item {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.guarantee-item .guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.guarantee-item .guarantee-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.guarantee-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.4;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.time-unit {
    background: var(--primary-green);
    color: var(--primary-white);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
    border: 3px solid var(--primary-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.time-unit label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Social Proof Section */
.social-proof-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    color: white;
    font-size: 1.5rem;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    margin-bottom: 0.75rem;
}

.testimonial-name {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-title {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    margin-bottom: 0;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

/* FAQ Section */
.faq {
    padding: 1.5rem 0 1rem 0;
    background: var(--primary-white);
}

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

.faq-item {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-white);
    color: var(--text-dark);
    font-weight: 700;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
    color: var(--text-dark);
    transform: translateY(-2px);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-button {
    background: var(--primary-green);
    color: var(--primary-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 25px;
}


/* Security Banner */
.security-banner {
    background: var(--primary-white);
    padding: 1rem 0;
    text-align: center;
}

.security-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    background: white;
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.security-content i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
    color: var(--primary-white);
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section p {
    color: #bbb;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(82, 194, 112, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(82, 194, 112, 0.3);
}

.footer-badge i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.footer-badge span {
    font-weight: 700;
    color: var(--primary-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    color: #bbb;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-bottom: 2rem;
        margin-bottom: 0;
    }
    
    .problems {
        padding: 2rem 1rem;
    }
    
    .solution-new {
        padding: 2rem 0;
    }
    
    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    
    .product-title-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .product-title-text {
        text-align: center;
    }
    
    .product-main-title {
        font-size: 2rem;
    }
    
    .product-main-image {
        max-width: 250px;
    }
    
    .solution-intro p {
        font-size: 1rem;
    }
    
    .product-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .target-audience {
        padding: 2rem 1rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-card {
        padding: 2rem;
    }
    
    .audience-card h3 {
        font-size: 1.2rem;
    }
    
    .audience-card p {
        font-size: 1rem;
    }
    
    .product-preview {
        padding: 2rem 0;
    }
    
    .preview-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-new {
        padding: 2rem 0;
    }
    
    
    .benefits-text {
        padding: 2rem;
    }
    
    .benefits-intro {
        font-size: 1.1rem;
    }
    
    .benefit-point h4 {
        font-size: 1.2rem;
    }
    
    .benefit-point p {
        font-size: 1rem;
        text-align: left;
    }
    
    .produto {
        padding: 1rem 0 1.5rem 0;
        margin-top: 0;
    }
    
    .offer-content {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .social-proof-section {
        padding: 1rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq {
        padding: 1rem 0 0.5rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
        text-align: left;
    }
    
    .hero-cta {
        grid-column: 1;
        text-align: left;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .packages-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2.5rem;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .footer-section:first-child {
        order: 1;
    }
    
    .footer-section:last-child {
        order: 2;
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
        text-align: left;
        margin-top: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }
    
    .testimonial-avatar {
        align-self: flex-start;
        margin-bottom: 0;
        width: 40px;
        height: 40px;
    }
    
    .testimonial-avatar i {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}



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

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