/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #8b0000;
    --purple: #c2185b;
    --light-purple: #e91e63;
    --orange: #ff4500;
    --hot-pink: #ff1493;
    --red: #dc143c;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #2d2d2d;
    --rainbow-red: #ff0000;
    --rainbow-orange: #ff8c00;
    --rainbow-yellow: #ffd700;
    --rainbow-green: #00ff00;
    --rainbow-blue: #0000ff;
    --rainbow-purple: #8b00ff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #1a0000 100%);
    padding: 80px 20px 120px;
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 30px rgba(255, 69, 0, 0.5));
    }
}

.title-blue {
    color: var(--hot-pink);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    font-size: 4rem;
    letter-spacing: 3px;
}

.title-orange {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.app-preview {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.5), 0 0 40px rgba(255, 20, 147, 0.3);
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(220, 20, 60, 0.5), 0 0 40px rgba(255, 20, 147, 0.3);
    }
    50% {
        box-shadow: 0 20px 80px rgba(220, 20, 60, 0.7), 0 0 60px rgba(255, 20, 147, 0.5);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-display {
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 50%, var(--orange) 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.5), inset 0 0 30px rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.card-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-illustration {
    font-size: 4rem;
    margin-bottom: 20px;
}

.card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-front p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 40px;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.badge {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Rainbow Wave */
.rainbow-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to right,
        var(--rainbow-red) 0%,
        var(--rainbow-orange) 16.66%,
        var(--rainbow-yellow) 33.33%,
        var(--rainbow-green) 50%,
        var(--rainbow-blue) 66.66%,
        var(--rainbow-purple) 83.33%,
        var(--rainbow-red) 100%
    );
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 100%);
    color: var(--white);
    box-shadow: 0 5px 30px rgba(220, 20, 60, 0.6), 0 0 20px rgba(255, 20, 147, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--orange) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.8), 0 0 30px rgba(255, 20, 147, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--orange) 0%, #ff6347 100%);
    color: var(--white);
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.6), 0 0 20px rgba(255, 69, 0, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff6347 0%, var(--red) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.8), 0 0 30px rgba(255, 69, 0, 0.6);
}

.btn-center {
    display: block;
    margin: 40px auto;
    max-width: 400px;
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    display: block;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #1a0000 100%);
    padding: 100px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    font-weight: 600;
}

.cards-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.card-sample {
    background: var(--white);
    color: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card-sample:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-sample h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
    font-weight: 700;
}

.card-sample p {
    color: var(--dark-gray);
    font-size: 1rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 20, 147, 0.5);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background: var(--dark-gray);
    padding: 100px 20px;
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.benefit-card:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6), 0 0 30px rgba(255, 20, 147, 0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.benefits-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 40px auto 0;
    opacity: 0.9;
    line-height: 1.8;
}

/* Ideal For Section */
.ideal-for {
    background: var(--white);
    padding: 100px 20px;
}

.ideal-for .section-title {
    color: var(--dark-blue);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.ideal-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ideal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ideal-card:hover::before {
    opacity: 1;
}

.ideal-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.6), 0 0 40px rgba(255, 20, 147, 0.4);
}

.ideal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ideal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.ideal-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* What You Get Section */
.what-you-get {
    background: var(--dark-blue);
    padding: 100px 20px;
    color: var(--white);
}

.app-showcase {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.app-mockup-large {
    width: 100%;
    max-width: 600px;
    background: var(--white);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-screen {
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 50%, var(--orange) 100%);
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.app-interface {
    color: var(--white);
}

.app-header h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.app-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mini-card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.features-list {
    max-width: 700px;
    margin: 60px auto;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--rainbow-green);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    min-width: 30px;
}

.section-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 40px auto 0;
    opacity: 0.9;
    line-height: 1.8;
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, #4a0000 0%, #8b0000 50%, #4a0000 100%);
    padding: 100px 20px;
    color: var(--white);
}

.bonuses .section-title .emoji {
    color: var(--orange);
}

.bonus-list {
    max-width: 900px;
    margin: 60px auto;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
    border-color: rgba(255, 20, 147, 0.5);
}

.bonus-number {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.5);
}

.bonus-content {
    flex: 1;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bonus-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #1a0000 100%);
    padding: 100px 20px;
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
    max-width: 1200px;
}

.pricing-box {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-box.premium-version {
    border: 3px solid var(--hot-pink);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.pricing-box.premium-version:hover {
    box-shadow: 0 30px 80px rgba(255, 20, 147, 0.6);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    z-index: 10;
}

.pricing-badge.premium-badge {
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--orange) 100%);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
    }
}

.pricing-header {
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.version-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.premium-version .pricing-header {
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--orange) 100%);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-content {
    padding: 50px 40px;
    color: var(--dark-gray);
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.premium-version .pricing-list li {
    font-weight: 500;
}

.premium-version .pricing-list li strong {
    color: var(--hot-pink);
    font-weight: 700;
}

.price {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    position: relative;
}

.premium-price {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 2px solid rgba(255, 20, 147, 0.3);
}

.economy-badge {
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--rainbow-green) 0%, #00cc66 100%);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
}

.old-price {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-gray);
    text-decoration: line-through;
    margin-bottom: 10px;
    opacity: 0.6;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rainbow-green);
    margin-bottom: 10px;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

.payment-methods {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.payment-methods p {
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 2rem;
}

.secure-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

/* Popup de Downsell */
.downsell-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.downsell-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.downsell-popup {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 100%);
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 3px solid var(--hot-pink);
    box-shadow: 0 30px 100px rgba(255, 20, 147, 0.5);
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-downsell {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-downsell:hover {
    background: rgba(255, 20, 147, 0.5);
    transform: rotate(90deg);
}

.downsell-content {
    padding: 50px 40px;
    color: var(--white);
}

.downsell-header {
    text-align: center;
    margin-bottom: 40px;
}

.fire-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: flame-flicker 1s ease-in-out infinite;
}

.downsell-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff1493 0%, #ff4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.downsell-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.downsell-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin: 40px 0;
    align-items: center;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.comparison-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.basic-comp {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.premium-comp {
    border: 3px solid var(--hot-pink);
    background: rgba(255, 20, 147, 0.2);
    position: relative;
}

.premium-comp::before {
    content: '⭐ RECOMENDADO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--orange) 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.comp-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--white);
}

.special-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.5rem;
}

.highlight {
    color: var(--rainbow-green);
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.special-offer {
    background: linear-gradient(135deg, var(--rainbow-green) 0%, #00cc66 100%);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin: 15px 0;
    animation: pulse 2s ease-in-out infinite;
}

.comparison-item ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.comparison-item ul li {
    padding: 10px 0;
    font-size: 1rem;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--hot-pink);
    animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.downsell-benefits {
    margin: 40px 0;
    text-align: center;
}

.downsell-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--hot-pink);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: rgba(255, 20, 147, 0.2);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 20, 147, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
}

.downsell-cta {
    text-align: center;
    margin-top: 40px;
}

.downsell-btn {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    padding: 25px;
    animation: button-glow 2s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 20, 60, 0.6), 0 0 30px rgba(255, 20, 147, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(220, 20, 60, 0.8), 0 0 40px rgba(255, 20, 147, 0.6);
    }
}

.downsell-guarantee {
    font-size: 1.2rem;
    color: var(--rainbow-green);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .downsell-comparison {
        grid-template-columns: 1fr;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .downsell-popup {
        margin: 20px;
        max-height: 95vh;
    }
    
    .downsell-content {
        padding: 30px 20px;
    }
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: 100px 20px;
}

.faq .section-title {
    color: var(--dark-blue);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--red) 0%, var(--hot-pink) 100%);
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 20, 147, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 20, 147, 0.1);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    line-height: 1.8;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

/* Simulação Interativa do App */
.app-simulation-container {
    margin: 80px 0;
    position: relative;
    perspective: 2000px;
}

.simulation-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.phone-mockup-3d {
    width: 350px;
    height: 700px;
    position: relative;
    transform-style: preserve-3d;
    animation: phone-float 6s ease-in-out infinite;
    cursor: pointer;
}

@keyframes phone-float {
    0%, 100% {
        transform: translateY(0) rotateY(-5deg) rotateX(5deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg) rotateX(-5deg);
    }
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a0000 0%, #4a0000 50%, #1a0000 100%);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 30px 80px rgba(220, 20, 60, 0.6),
        0 0 60px rgba(255, 20, 147, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 20, 147, 0.1) 50%, 
        transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen-interactive {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
    border-radius: 32px;
    padding: 50px 20px 20px;
    overflow: hidden;
    position: relative;
}

.app-header-sim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.app-logo-small {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff1493 0%, #ff4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.app-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    background: rgba(255, 20, 147, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #fff;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.card-container-3d {
    perspective: 1000px;
    perspective-origin: center center;
    height: 400px;
    margin: 20px 0;
    position: relative;
    width: 100%;
    -webkit-perspective: 1000px;
    -webkit-perspective-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-origin: center center;
    will-change: transform;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-3d.flipped {
    transform: rotateY(180deg) !important;
    transform-origin: center center;
}

.card-3d.flipping {
    pointer-events: none;
}

.card-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: center center;
}

.card-front-face {
    background: linear-gradient(135deg, #dc143c 0%, #ff1493 50%, #ff4500 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotateY(0deg);
    z-index: 1;
}

.card-back-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    opacity: 0.3;
}

.card-logo-center {
    text-align: center;
    z-index: 1;
}

.flame-icon {
    font-size: 80px;
    animation: flame-flicker 1s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes flame-flicker {
    0%, 100% { transform: scale(1) rotate(-2deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.tap-hint {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.card-back-face {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 100%);
    border: 2px solid rgba(255, 20, 147, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    justify-content: space-between;
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: center center;
    z-index: 2;
}

.card-front-face {
    z-index: 1;
}

.card-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff1493 0%, #ff4500 100%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-icon-large {
    font-size: 60px;
    margin: 20px 0;
    animation: icon-glow 2s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8));
    }
}

.card-title-sim {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0;
    text-align: center;
    color: #ff1493;
}

.card-content-sim {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    display: flex;
    align-items: center;
}

.card-intensity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.intensity-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.stars-rating {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 16px;
    opacity: 0.3;
    transition: all 0.3s;
}

.star.filled {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.card-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 20, 147, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 20, 147, 0.3);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.action-btn:hover {
    background: rgba(255, 20, 147, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.favorite-btn.active {
    background: linear-gradient(135deg, #ff1493 0%, #ff4500 100%);
    border-color: #ff1493;
}

.complete-btn.active {
    background: linear-gradient(135deg, #00ff00 0%, #00cc66 100%);
    border-color: #00ff00;
}

.app-nav-sim {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin-top: 20px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
    opacity: 0.5;
}

.nav-item.active {
    opacity: 1;
    background: rgba(255, 20, 147, 0.2);
}

.nav-icon {
    font-size: 20px;
}

.nav-label {
    font-size: 10px;
    color: #fff;
}

.fire-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.simulation-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.control-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #dc143c 0%, #ff1493 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.control-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.6);
}

.control-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Simulação Avançada */
.advanced-simulation {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #1a0000 100%);
    padding: 100px 20px;
    color: #fff;
}

.full-app-simulation {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.simulation-phone-large {
    width: 100%;
    max-width: 400px;
    height: 800px;
    background: linear-gradient(145deg, #1a0000 0%, #4a0000 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 40px 100px rgba(220, 20, 60, 0.6),
        0 0 80px rgba(255, 20, 147, 0.4);
    position: relative;
}

.phone-screen-full {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
    border-radius: 30px;
    padding: 50px 25px 25px;
    overflow-y: auto;
    position: relative;
}

.home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.home-header h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493 0%, #ff4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 20, 147, 0.2);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 212;
    transition: stroke-dashoffset 0.5s;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    font-size: 24px;
    font-weight: 800;
    color: #ff1493;
    display: block;
}

.progress-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.categories-grid-sim {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.category-card-sim {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.category-card-sim::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card-sim:hover::before {
    opacity: 1;
}

.category-card-sim:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 20, 147, 0.6);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.category-card-sim h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.category-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.new-card-btn-sim {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #dc143c 0%, #ff1493 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.new-card-btn-sim::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.new-card-btn-sim:hover::before {
    width: 300px;
    height: 300px;
}

.new-card-btn-sim:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
}

.btn-icon {
    font-size: 24px;
}

/* Animações Adicionais */
@keyframes particle-float {
    to {
        transform: translate(calc(-50% + var(--x, 0)), calc(-50% + var(--y, 0))) scale(0);
        opacity: 0;
    }
}

@keyframes heart-float {
    to {
        transform: translate(-50%, -100px) scale(2);
        opacity: 0;
    }
}

@keyframes check-pop {
    0% {
        transform: translate(-50%, 0) scale(0);
    }
    50% {
        transform: translate(-50%, -30px) scale(1.5);
    }
    100% {
        transform: translate(-50%, -60px) scale(0);
        opacity: 0;
    }
}

@keyframes card-enter {
    from {
        transform: scale(0.8) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Gradiente SVG para Progresso */
.progress-svg {
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

/* Efeitos de Hover Melhorados */
.phone-mockup-3d:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotateY(0deg) rotateX(0deg) scale(1.02);
    transition: transform 0.3s ease;
}

.card-3d:hover:not(.flipped):not(.flipping) {
    transform: scale(1.02);
}

.card-3d.flipped:hover {
    transform: rotateY(180deg) scale(1.02);
}

/* Partículas de Fogo no Background */
.fire-canvas {
    filter: blur(1px);
    mix-blend-mode: screen;
}

/* Melhorias na Simulação Completa */
.simulation-phone-large {
    animation: phone-glow 3s ease-in-out infinite;
}

@keyframes phone-glow {
    0%, 100% {
        box-shadow: 
            0 40px 100px rgba(220, 20, 60, 0.6),
            0 0 80px rgba(255, 20, 147, 0.4);
    }
    50% {
        box-shadow: 
            0 50px 120px rgba(220, 20, 60, 0.8),
            0 0 100px rgba(255, 20, 147, 0.6),
            0 0 150px rgba(255, 69, 0, 0.3);
    }
}

/* Scrollbar Customizada */
.phone-screen-full::-webkit-scrollbar {
    width: 6px;
}

.phone-screen-full::-webkit-scrollbar-track {
    background: rgba(255, 20, 147, 0.1);
    border-radius: 10px;
}

.phone-screen-full::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff1493 0%, #ff4500 100%);
    border-radius: 10px;
}

.phone-screen-full::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff4500 0%, #ff1493 100%);
}

/* Efeito de Glassmorphism */
.category-card-sim {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animação de Loading */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Efeito de Brilho nos Botões */
.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.control-btn:hover::before {
    left: 100%;
}

.control-btn {
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cards-showcase,
    .app-features-grid,
    .benefits-grid,
    .ideal-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-number {
        min-width: auto;
    }
    
    .app-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .phone-mockup-3d {
        width: 280px;
        height: 560px;
    }
    
    .simulation-phone-large {
        max-width: 100%;
        height: 600px;
    }
    
    .simulation-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .control-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 100px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-content {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 2rem;
    }
}

