 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            padding: 16px 10px;
        }
        .container {
            max-width: 800px;
            width: 100%;
            background-color: #ffffff;
            border-radius: 30px;
            padding: 22px 18px 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .header-title {
            text-align: center;
            margin-bottom: 12px;
        }
        .header-title h1 {
            font-size: 30px;
            font-weight: 800;
            color: #222;
            line-height: 1.1;
        }
        .header-title h1 span {
            color: #ff3b6f;
        }
        .header-title h1 .sub-highlight {
            color: #ff6b9d;
        }
        .banner-purple {
            background-color: #a583ff;
            color: white;
            border-radius: 50px;
            padding: 12px 16px;
            text-align: center;
            font-weight: 600;
            font-size: 17px;
            margin: 12px 0;
            display: block;
            width: 100%;
            box-shadow: 0 4px 0 #7a5cdb;
        }
        .banner-purple i {
            margin-left: 6px;
        }
        .intro-text {
            font-size: 15px;
            color: #333;
            margin: 8px 0 14px;
            line-height: 1.5;
        }
        .intro-text strong {
            color: #222;
        }
        .alert-text {
            background-color: #fff3f3;
            border-radius: 30px;
            padding: 10px 18px;
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 18px;
            border: 1px solid #ffcccc;
            width: 100%;
        }
        .alert-text i {
            color: #d32f2f;
            margin-right: 8px;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin: 18px 0 22px;
        }
        .benefit-item {
            background-color: #f2f4f8;
            border-radius: 16px;
            padding: 14px 4px;
            text-align: center;
            font-size: 12px;
            font-weight: 500;
            color: #1f2a44;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        .benefit-item i {
            font-size: 26px;
            color: #2b3a67;
        }
        .two-col {
            display: flex;
            gap: 15px;
            margin: 18px 0;
            flex-wrap: wrap;
        }
        .col {
            flex: 1;
            min-width: 240px;
            background: #fafbff;
            border-radius: 20px;
            padding: 16px 14px;
        }
        .col h3 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            margin-bottom: 12px;
            color: #1f2a44;
        }
        .col h3 i {
            color: #7a5cdb;
        }
        .task-list {
            list-style: none;
        }
        .task-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 13px;
            font-size: 14px;
            color: #1e1e2f;
        }
        .task-list li i {
            font-size: 20px;
            min-width: 26px;
            text-align: center;
            margin-top: 2px;
        }
        .task-list .icon-purple { color: #a583ff; }
        .task-list .icon-pink { color: #ff6b9d; }
        .task-list .icon-blue { color: #3b8cff; }
        .task-list .icon-green { color: #28a745; }
        .task-list .icon-orange { color: #fd7e14; }

        .ganhos-box {
            background-color: #f3f5fa;
            border-radius: 18px;
            padding: 12px 14px;
            margin-top: 4px;
        }
        .ganhos-box .ganho-valor {
            font-size: 20px;
            font-weight: 700;
            color: #1f2a44;
        }
        .ganhos-box .ganho-valor span {
            color: #28a745;
        }
        .ganhos-box ul {
            list-style: none;
            margin-top: 6px;
        }
        .ganhos-box ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 6px;
        }
        .ganhos-box ul li i {
            color: #28a745;
            font-size: 14px;
        }
        .exemplo-box {
            background-color: #dcedc9;
            border-radius: 30px;
            padding: 8px 12px;
            text-align: center;
            font-weight: 600;
            font-size: 13px;
            color: #1e3a2f;
            margin: 15px 0 10px;
        }
        .small-note {
            font-size: 11px;
            color: #777;
            text-align: center;
            margin-top: 6px;
        }
        .task-badge {
            background: #e8e3ff;
            border-radius: 30px;
            padding: 8px 15px;
            font-size: 13px;
            font-weight: 500;
            color: #2a1b5e;
            display: inline-block;
            margin: 5px 0 14px;
        }
        .btn-whatsapp {
            display: inline-block;
            background-color: #25d366;
            color: white;
            font-weight: 700;
            font-size: 18px;
            padding: 14px 20px;
            border-radius: 50px;
            text-decoration: none;
            margin: 5px 0 15px;
            box-shadow: 0 4px 0 #1da851;
            transition: 0.1s;
            border: none;
            width: 100%;
            text-align: center;
        }
        .btn-whatsapp i {
            margin-right: 10px;
        }
        .btn-whatsapp:hover {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #1da851;
        }
        .schedule-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            background: #f0f4ff;
            border-radius: 20px;
            padding: 14px 18px;
            margin: 18px 0;
        }
        .schedule-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            font-weight: 500;
            color: #1f2a44;
        }
        .schedule-item i {
            font-size: 26px;
            margin-bottom: 3px;
        }
        .schedule-item .sun { color: #f7b731; }
        .schedule-item .cloud { color: #5b7fbf; }
        .schedule-item .moon { color: #2b3a67; }
        .schedule-text {
            font-size: 13px;
            color: #333;
            text-align: right;
        }
        .schedule-text strong {
            display: block;
            font-size: 15px;
        }
        .requirements {
            background: #f0f4ff;
            border-radius: 20px;
            padding: 15px 18px;
            margin: 15px 0;
        }
        .requirements h3 {
            font-size: 18px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .requirements h3 i { color: #3b8cff; }
        .requirements ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 15px;
        }
        .requirements ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .requirements ul li i {
            color: #3b8cff;
            font-size: 14px;
        }
        .steps-section {
            text-align: center;
            margin: 22px 0 18px;
        }
        .steps-section h3 {
            font-size: 19px;
            font-weight: 700;
            color: #1f2a44;
            margin-bottom: 14px;
        }
        .steps-section h3 i {
            color: #a583ff;
            margin-right: 5px;
        }
        .steps-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px;
        }
        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            min-width: 50px;
            background: #f8f9fc;
            border-radius: 20px;
            padding: 8px 4px;
        }
        .step-item .circle {
            background: #a583ff;
            color: white;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .step-item i {
            font-size: 20px;
            margin: 4px 0;
        }
        .step-item span {
            font-size: 10px;
            font-weight: 500;
            color: #1f2a44;
            text-align: center;
            line-height: 1.2;
        }
        .step-arrow {
            font-size: 18px;
            color: #c0c7d8;
        }
        .bottom-area {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 22px;
        }
        .vagas-box {
            background: #fff5f5;
            border-radius: 20px;
            padding: 15px;
            flex: 1;
            min-width: 200px;
            border-left: 0px solid #d32f2f;
        }
        .vagas-box h4 {
            color: #d32f2f;
            font-size: 18px;
        }
        .vagas-box p {
            font-size: 14px;
            color: #1f1f1f;
        }
        .cta-box {
            background: #0f8f5f;
            border-radius: 20px;
            padding: 15px 18px;
            flex: 2;
            min-width: 220px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .cta-box .cta-title {
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cta-box .cta-title i {
            color: #ffd966;
        }
        .cta-box p {
            font-size: 14px;
            margin: 5px 0 10px;
            opacity: 0.9;
        }
        .btn-cta-whats {
            background-color: #25d366;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            text-decoration: none;
        }
        .btn-cta-whats i {
            font-size: 20px;
        }
        .img-placeholder {
            background: #eef2f7;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7a8f;
            font-size: 14px;
            font-weight: 500;
            border: 2px dashed #b8c4d4;
            width: 100%;
            aspect-ratio: 16/10;
            margin: 6px 0;
            padding: 8px;
            text-align: center;
            flex-direction: column;
            gap: 4px;
        }
        .img-placeholder i {
            font-size: 30px;
            color: #8a9bb0;
            margin-bottom: 4px;
        }
        .img-placeholder.rect {
            aspect-ratio: 5/5;
        }
        .exemplo-box {
            background-color: #dcedc9;
            border-radius: 30px;
            padding: 8px 12px;
            text-align: center;
            font-weight: 600;
            font-size: 13px;
            color: #1e3a2f;
            margin: 15px 0 10px;
        }
        .small-note {
            font-size: 11px;
            color: #777;
            text-align: center;
            margin-top: 6px;
        }
        .hero-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 18px;
        }
        .hero-text {
            flex: 2;
            min-width: 280px;
        }
        .hero-image {
            flex: 1;
            min-width: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-image .img-placeholder {
            aspect-ratio: 4/5;
            margin: 0;
        }
        @media (max-width: 700px) {
            .hero-section {
                flex-direction: column;
            }
            .hero-image {
                width: 100%;
                order: 1;
            }
            .hero-text {
                order: 2;
            }
            .hero-image .img-placeholder {
                aspect-ratio: 5/5;
            }
        }
        @media (max-width: 600px) {
            .header-title h1 { font-size: 24px; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .requirements ul { grid-template-columns: 1fr; }
            .steps-row { flex-wrap: wrap; justify-content: center; }
            .step-item { min-width: 60px; margin-bottom: 6px; }
            .step-arrow { display: none; }
            .bottom-area { flex-direction: column; }
        }