.elementor-widget-icon.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-28 .elementor-element.elementor-element-ac0e5a9 .elementor-icon-wrapper{text-align:center;}/* Start custom CSS for html, class: .elementor-element-10e0866 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 98%);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

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

/* Utility Classes */
.primary-text {
    color: hsl(160, 84%, 39%);
}

.gold-text {
    color: hsl(43, 96%, 56%);
}

.danger-text {
    color: hsl(0, 84%, 60%);
}

.badge {
    display: inline-block;
    background: hsl(160, 84%, 39%, 0.1);
    border: 1px solid hsl(160, 84%, 39%, 0.5);
    color: hsl(160, 84%, 39%);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, hsl(160, 84%, 39%, 0.3), transparent);
    margin: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: hsl(215, 20%, 65%);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://wecre.com.br/wp-content/uploads/2025/08/BANNER-DE-BACKGROUND-SITE_Prancheta-1_1751035823895-scaled.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: grayscale(100%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, hsl(160, 84%, 39%, 0.15) 0%, transparent 70%);
}

.light-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.light-effect-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(160, 84%, 39%);
}

.light-effect-2 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: hsl(43, 96%, 56%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(215, 20%, 65%);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(to right, hsl(160, 84%, 39%), hsl(160, 84%, 45%));
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, hsl(160, 84%, 45%), hsl(160, 84%, 39%));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: hsl(160, 84%, 39%);
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

/* Warning Section */
.warning-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, hsl(222, 47%, 11%), hsl(222, 13%, 16%));
}

.warning-card {
    background: hsl(0, 84%, 60%, 0.1);
    border: 1px solid hsl(0, 84%, 60%, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.warning-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.warning-header i {
    color: hsl(0, 84%, 60%);
    margin-right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
}

.warning-header h2 {
    color: hsl(0, 84%, 60%);
    font-size: 1.5rem;
    font-weight: bold;
}

.warning-card p {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0;
    background: hsl(222, 13%, 16%);
    text-align: center;
}

.testimonial-quote {
    border-left: 4px solid hsl(160, 84%, 39%);
    padding-left: 2rem;
    font-size: 1.875rem;
    font-style: italic;
    color: hsl(215, 20%, 65%);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    color: hsl(160, 84%, 39%);
    font-weight: 600;
}

/* Market Stats Section */
.market-stats-section {
    padding: 5rem 0;
    background: hsl(222, 47%, 11%);
    text-align: center;
}

.quote {
    border-left: 4px solid hsl(160, 84%, 39%);
    padding-left: 2rem;
    font-size: 1.25rem;
    color: hsl(215, 20%, 65%);
    margin: 3rem auto;
    max-width: 600px;
    text-align: left;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: hsl(222, 13%, 16%);
}

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

.problem-card {
    background: linear-gradient(135deg, hsl(0, 84%, 60%, 0.2), hsl(0, 84%, 60%, 0.1));
    border: 1px solid hsl(0, 84%, 60%, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-icon {
    background: hsl(0, 84%, 60%);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    width: 1rem;
    height: 1rem;
}

.truth-section {
    text-align: center;
    margin-bottom: 3rem;
}

.truth-section h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.truth-section p {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.situations-intro {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.situation-card {
    background: linear-gradient(to right, hsl(222, 13%, 16%, 0.5), hsl(222, 13%, 16%, 0.3));
    border: 1px solid hsl(217, 33%, 17%);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.situation-card p {
    color: hsl(215, 20%, 65%);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: hsl(222, 47%, 11%);
}

.story-quote {
    border-left: 4px solid hsl(160, 84%, 39%);
    padding-left: 2rem;
    font-size: 1.125rem;
    color: hsl(215, 20%, 65%);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Results Section */
.results-section {
    padding: 5rem 0;
    background: hsl(222, 13%, 16%);
}

.results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.results-header p {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.stat-card {
    background: linear-gradient(135deg, hsl(160, 84%, 39%, 0.2), hsl(160, 84%, 39%, 0.1));
    border: 1px solid hsl(160, 84%, 39%, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.stat-card.main-stat {
    grid-column: span 2;
    background: linear-gradient(135deg, hsl(43, 96%, 56%, 0.2), hsl(43, 96%, 56%, 0.1));
    border-color: hsl(43, 96%, 56%, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(160, 84%, 39%);
    margin-bottom: 0.5rem;
}

.main-stat .stat-number {
    color: hsl(43, 96%, 56%);
}

.stat-card p {
    color: hsl(215, 20%, 65%);
}

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

.credibility-text p {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Market Insight Section */
.market-insight-section {
    padding: 5rem 0;
    background: hsl(222, 47%, 11%);
}

.insight-header {
    text-align: center;
    margin-bottom: 4rem;
}

.highlight-card {
    background: transparent;
    border: 1px solid hsl(160, 84%, 39%, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(160, 84%, 39%);
}

.money-comparison {
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.comparison-card.danger {
    background: hsl(0, 84%, 60%, 0.2);
    border: 1px solid hsl(0, 84%, 60%, 0.3);
}

.comparison-card.success {
    background: hsl(160, 84%, 39%, 0.2);
    border: 1px solid hsl(160, 84%, 39%, 0.3);
}

.comparison-card p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 1.875rem;
    font-weight: bold;
}

.comparison-card.danger .amount {
    color: hsl(0, 84%, 60%);
}

.comparison-card.success .amount {
    color: hsl(160, 84%, 39%);
}

.money-revelation {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0;
}

.final-quote {
    border-left: 4px solid hsl(160, 84%, 39%);
    padding-left: 2rem;
    font-size: 1.25rem;
    color: hsl(215, 20%, 65%);
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

/* Method Intro Section */
.method-intro-section {
    padding: 5rem 0;
    background: hsl(15, 25%, 9%);
}

.method-banner {
    background: linear-gradient(to right, hsl(43, 96%, 56%), hsl(43, 96%, 60%));
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.method-name {
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
}

.method-description {
    background: hsl(222, 13%, 16%, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(217, 33%, 17%);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: -1rem;
    position: relative;
    z-index: 10;
}

.method-warning {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(0, 84%, 60%);
    text-align: center;
    margin-bottom: 2rem;
}

.method-nots {
    margin-bottom: 2rem;
}

.method-not {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.method-not i {
    color: hsl(0, 84%, 60%);
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.method-not p {
    color: hsl(215, 20%, 65%);
}

.method-for-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(160, 84%, 39%);
    text-align: center;
    margin-bottom: 1.5rem;
}

.method-fors {
    display: grid;
    gap: 1rem;
}

.method-for {
    background: hsl(160, 84%, 39%, 0.1);
    border: 1px solid hsl(160, 84%, 39%, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
}

.method-for-header {
    color: hsl(160, 84%, 39%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method-for p:last-child {
    color: hsl(215, 20%, 65%);
}

/* Personal Story Section */
.personal-story-section {
    padding: 5rem 0;
    background: hsl(15, 25%, 9%);
    text-align: center;
}

.story-intro {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.personal-story-section p:last-child {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Method Benefits Section */
.method-benefits-section {
    padding: 5rem 0;
    background: hsl(7, 15%, 7%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-intro {
    color: hsl(160, 84%, 39%);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.benefits-header h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.benefits-header p {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
}

.method-validation {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
}

.validation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.validation-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.validation-item i {
    color: hsl(160, 84%, 39%);
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.validation-item p {
    color: hsl(215, 20%, 65%);
}

.crucial-point {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: hsl(15, 25%, 9%);
}

.offer-card {
    background: linear-gradient(135deg, hsl(222, 13%, 16%), hsl(217, 33%, 17%));
    border: 1px solid hsl(217, 33%, 17%);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: hsl(7, 15%, 7%);
    border-radius: 0.5rem;
}

.offer-subtitle {
    color: hsl(160, 84%, 39%);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.offer-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.offer-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(43, 96%, 56%);
}

.offer-modules {
    display: grid;
    gap: 2rem;
}

.module {
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(217, 33%, 17%);
}

.module:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.module-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(160, 84%, 39%);
    margin-bottom: 0.75rem;
}

.module-description {
    color: hsl(215, 20%, 65%);
    line-height: 1.6;
}

.limited-access {
    background: linear-gradient(to right, hsl(43, 96%, 56%), hsl(43, 96%, 60%));
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
}

.limited-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: hsl(222, 47%, 11%);
}

.pricing-card {
    background: linear-gradient(135deg, hsl(222, 13%, 16%), hsl(217, 33%, 17%));
    border: 2px solid hsl(43, 96%, 56%);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
}

.pricing-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: hsl(7, 15%, 7%);
    border-radius: 0.5rem;
}

.old-price {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.installment-text {
    color: hsl(215, 20%, 65%);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.main-price {
    font-size: 3rem;
    font-weight: bold;
    color: hsl(43, 96%, 56%);
    margin-bottom: 0.5rem;
}

.cash-price {
    font-size: 1.5rem;
    color: hsl(160, 84%, 39%);
    margin-bottom: 0.5rem;
}

.access-period {
    color: hsl(215, 20%, 65%);
}

.purchase-button {
    width: 100%;
    background: linear-gradient(to right, hsl(43, 96%, 56%), hsl(43, 96%, 60%));
    color: black;
    border: none;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.purchase-button:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, hsl(43, 96%, 60%), hsl(43, 96%, 56%));
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: hsl(7, 15%, 7%);
}

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

.guarantee-header .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.guarantee-text p {
    color: hsl(215, 20%, 65%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guarantee-promise {
    color: hsl(160, 84%, 39%) !important;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-promise i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: hsl(222, 47%, 11%);
}

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

.testimonial-card {
    background: linear-gradient(135deg, hsl(222, 13%, 16%), hsl(217, 33%, 17%));
    border: 1px solid hsl(217, 33%, 17%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: hsl(160, 84%, 39%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(160, 84%, 39%);
}

.testimonial-stars {
    color: hsl(43, 96%, 56%);
}

.testimonial-text {
    color: hsl(215, 20%, 65%);
    font-style: italic;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    color: hsl(160, 84%, 39%);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: hsl(7, 15%, 7%);
    text-align: center;
}

.final-message p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.rule-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(160, 84%, 39%);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: hsl(222, 47%, 11%);
    border-top: 1px solid hsl(217, 33%, 17%);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(43, 96%, 56%);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: hsl(215, 20%, 65%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40%, 43% {
        transform: translateY(-10px) translateX(-50%);
    }
    70% {
        transform: translateY(-5px) translateX(-50%);
    }
    90% {
        transform: translateY(-2px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-grid .main-stat {
        grid-column: span 1;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
    }
    
    .validation-list {
        grid-template-columns: 1fr;
    }
    
    .method-banner {
        font-size: 1.25rem;
    }
    
    .method-name {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-price {
        font-size: 2.5rem;
    }
    
    .problem-cards,
    .situations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */