/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.875rem;
    --normal-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
    --border-radius: 0.75rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: var(--normal-size);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav__logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav__logo span {
    color: var(--text-light);
    font-size: 0.75rem;
    display: block;
    margin-top: -0.25rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 8rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: var(--h1-size);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__promo {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.promo-content p {
    margin-bottom: 0.5rem;
}

/* Estilos de preços movidos para seção upsell-card (linha ~1459) */

.promo-bonus {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Hero Graphics */
.hero__graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__main-graphic {
    width: 140px;
    height: 140px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: -1s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -0.5s;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-light);
}

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

.section__title {
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service__card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service__title {
    font-size: var(--h3-size);
    font-weight: 600;
    color: var(--text-color);
}

.service__pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.service__price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.service__price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.service__period {
    color: var(--text-light);
    font-size: 0.875rem;
}

.service__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service__features i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.service__upsells {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.service__upsells h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
}

.upsell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upsell--clickable:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}

.upsell--featured {
    border-width: 3px;
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fffaf0 0%, #fff5f7 100%);
}

.upsell__badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.upsell__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.upsell__icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.upsell__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upsell__text strong {
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 700;
}

.upsell__text small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.upsell__pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 100px;
    flex-shrink: 0;
}

.upsell__price-old {
    color: var(--text-light);
    font-size: 0.85rem;
    text-decoration: line-through;
}

.upsell__price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.35rem;
}

/* Responsive para upsells */
@media screen and (max-width: 768px) {
    .upsell {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .upsell__content {
        flex-direction: column;
        text-align: center;
    }
    
    .upsell__pricing {
        align-items: center;
    }
}

.service__btn {
    width: 100%;
    justify-content: center;
}

/* ===== ABOUT SECTION ===== */
.about__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.about__graphic {
    position: relative;
    height: 300px;
}

.expertise-badge {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-1 {
    top: 20%;
    left: 0;
}

.badge-2 {
    top: 50%;
    right: 0;
}

.badge-3 {
    bottom: 20%;
    left: 20%;
}

.expertise-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-light);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info h3 {
    font-size: var(--h3-size);
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact__item h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact__item p {
    color: var(--text-light);
    margin: 0;
}

.contact__item small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.contact__cta {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.contact__cta h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact__cta ol {
    color: var(--text-color);
    padding-left: 1.5rem;
}

.contact__cta li {
    margin-bottom: 0.5rem;
}

/* ===== FORM ===== */
.form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--normal-size);
    transition: var(--transition);
    font-family: inherit;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__section p,
.footer__section li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer__section ul {
    list-style: none;
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
        --section-padding: 3rem 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 4rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4rem);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav__menu.show {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .services__container {
        grid-template-columns: 1fr;
    }
    
    .service__card.featured {
        transform: none;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .service__price {
        font-size: 2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
}

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

.testimonial__card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.testimonial__info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.testimonial__role {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: #718096;
}

.testimonial__rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial__rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials__container {
        grid-template-columns: 1fr;
    }
}

/* ===== FILE UPLOAD STYLES ===== */
.form__upload-area {
    margin-top: 0.5rem;
}

.form__file-input {
    display: none;
}

.form__file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.form__file-label:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.form__file-label i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form__file-label span {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form__file-label small {
    color: var(--text-light);
    font-size: 0.875rem;
}

.form__file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.file-item__info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-item__icon {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.file-item__name {
    color: var(--text-color);
    font-size: 0.875rem;
}

.file-item__size {
    color: var(--text-light);
    font-size: 0.75rem;
}

.file-item__remove {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    transition: var(--transition);
}

.file-item__remove:hover {
    color: #dc2626;
}

.form__requirements ul {
    list-style: none;
    padding-left: 0;
}

.form__requirements ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}


/* ===== PROCESS SECTION (COMO FUNCIONA) ===== */
.process {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
}

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

.process__step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process__step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
}

.process__step:hover::before {
    transform: scaleX(1);
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

.step__description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step__requirements {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.step__requirements h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step__requirements ul {
    list-style: none;
    padding: 0;
}

.step__requirements li {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.step__requirements li i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Photo Examples */
.photo-examples {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.photo-examples h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.photo-examples h3 i {
    color: var(--primary-color);
}

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

.example-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
    transition: all 0.3s ease;
}

.example-item.good {
    border-color: var(--accent-color);
    background: rgba(16, 185, 129, 0.05);
}

.example-item.bad {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.example-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.example-item.good .example-icon i {
    color: var(--accent-color);
}

.example-item.bad .example-icon i {
    color: #ef4444;
}

.example-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.example-item.good h4 {
    color: var(--accent-color);
}

.example-item.bad h4 {
    color: #ef4444;
}

.example-item ul {
    list-style: none;
    padding: 0;
}

.example-item ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.example-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.example-item.good ul li::before {
    color: var(--accent-color);
}

.example-item.bad ul li::before {
    color: #ef4444;
}

/* Responsive adjustments for process section */
@media screen and (max-width: 768px) {
    .process__container {
        grid-template-columns: 1fr;
    }
    
    .step__number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step__content h3 {
        font-size: 1.25rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UPSELLS PREMIUM (OPÇÃO 2) ===== */
.form__upsells-premium {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.upsells-header {
    text-align: center;
    margin-bottom: 2rem;
}

.upsells-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.upsells-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.upsell-card {
    background: white;
    border: 3px double var(--primary-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    overflow: visible;
}

.upsell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    border-color: var(--secondary-color);
}

.upsell-card--featured {
    border-color: var(--secondary-color);
    border-width: 4px;
    background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}

.upsell-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.upsell-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.upsell-icon {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.upsell-card__header h4 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.upsell-card__benefits {
    margin-bottom: 1.5rem;
    text-align: center;
}

.upsell-card__benefits p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.upsell-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.price-old {
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: line-through;
    order: 1;
}

.price-arrow {
    display: none;
}

.price-new {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    order: 2;
}

.price-discount {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    order: 3;
    margin-top: 0.5rem;
}

.upsell-card__checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gradient);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upsell-card__checkbox:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.upsell-card__checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: white;
}

.checkbox-text {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .form__upsells-premium {
        padding: 1.5rem;
    }
    
    .upsells-header h3 {
        font-size: 1.25rem;
    }
    
    .upsell-card {
        padding: 1.5rem;
    }
    
    .upsell-icon {
        font-size: 2rem;
    }
    
    .upsell-card__header h4 {
        font-size: 1.1rem;
    }
    
    .upsell-card__pricing {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .price-new {
        font-size: 1.5rem;
    }
}
