  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #1a2b4c;
            background-color: #fff;
            line-height: 1.5;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- HERO SECTION --- */
        .hero {
            background-image: url('../static/aa.png');
            background-size: cover;
            background-position: center;
            padding: 60px 0 40px;
            color: #fff;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(11, 24, 59, 0.92) 0%, rgba(11, 24, 59, 0.7) 60%, rgba(11, 24, 59, 0.2) 100%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-top-tag {
            display: inline-block;
            background-color: #f5a623;
            color: #1a2b4c;
            padding: 8px 18px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            max-width: 600px;
        }

        .hero h1 span {
            color: #ffd700;
        }

        .hero p.subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 500px;
            opacity: 0.9;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 35px;
        }

        .hero-features .feat-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            padding: 12px 20px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-features .feat-item svg {
            width: 24px;
            height: 24px;
            fill: #ffd700;
        }

        .hero-features .feat-item div {
            display: flex;
            flex-direction: column;
        }

        .hero-features .feat-item .feat-title {
            font-weight: 700;
            font-size: 14px;
        }

        .hero-features .feat-item .feat-desc {
            font-size: 12px;
            opacity: 0.8;
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            background-color: #f5a623;
            color: #1a2b4c;
            padding: 16px 40px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 800;
            font-size: 20px;
            transition: transform 0.2s;
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
        }

        .btn-hero:hover {
            transform: translateY(-2px);
        }

        .btn-hero svg {
            width: 24px;
            height: 24px;
            margin-left: 15px;
            fill: #1a2b4c;
        }

        /* --- SECTION 1: INFO GRATIS --- */
        .section-info {
            padding: 50px 0;
        }

        .section-info .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .section-info h2 {
            font-size: 32px;
            font-weight: 800;
            color: #1a2b4c;
            max-width: 400px;
        }

        .section-info h2 span {
            color: #00875a;
        }

        .section-info .header-text {
            max-width: 450px;
            color: #555;
            font-size: 15px;
        }

        .section-info .header-text p {
            margin-bottom: 5px;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .info-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            transition: box-shadow 0.3s;
        }

        .info-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .info-card .icon-box {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #f5a623;
            border-radius: 50%;
        }

        .info-card .icon-box svg {
            width: 30px;
            height: 30px;
            fill: #f5a623;
        }

        .info-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a2b4c;
        }

        .info-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

        /* --- SECTION 2: TRUST --- */
        .section-trust {
            padding: 40px 0 60px;
            background-color: #fff;
        }

        .section-trust .trust-flex {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }

        .trust-left {
            flex: 1;
            min-width: 300px;
        }

        .trust-left h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #1a2b4c;
        }

        .trust-left ul {
            list-style: none;
        }

        .trust-left ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #333;
        }

        .trust-left ul li svg {
            width: 20px;
            height: 20px;
            fill: #00875a;
        }

        .trust-right {
            display: flex;
            gap: 30px;
            flex: 1.5;
            min-width: 300px;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .trust-stat {
            text-align: center;
            flex: 1;
            min-width: 120px;
        }

        .trust-stat .icon-circle {
            width: 50px;
            height: 50px;
            background-color: #1a2b4c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .trust-stat .icon-circle svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }

        .trust-stat .stat-num {
            font-size: 32px;
            font-weight: 800;
            color: #1a2b4c;
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .trust-stat .stat-label {
            font-size: 13px;
            color: #555;
            line-height: 1.3;
        }

        /* --- SECTION 3: CASES --- */
        .section-cases {
            padding: 40px 0 60px;
            background-color: #fafafa;
        }

        .section-cases h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 800;
            color: #1a2b4c;
            margin-bottom: 5px;
        }

        .section-cases .subtitle {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 40px;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .case-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
        }

        .case-header {
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .case-header.green { background-color: #00875a; }
        .case-header.orange { background-color: #f5a623; }
        .case-header.teal { background-color: #007b7b; }

        .case-header h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
        }

        .case-header h4 span {
            display: block;
            font-weight: 400;
            font-size: 12px;
            opacity: 0.9;
            margin-top: 2px;
        }

        .case-logo {
            background: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 12px;
            color: #1a2b4c;
            text-align: center;
            min-width: 50px;
        }

        .case-body {
            padding: 20px;
        }

        .case-body .period {
            font-size: 13px;
            color: #666;
            margin-bottom: 10px;
        }

        .case-body .big-percent {
            font-size: 28px;
            font-weight: 800;
            color: #00875a;
            margin-bottom: 15px;
        }

        .case-chart-visual {
            height: 60px;
            border-left: 1px solid #eee;
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
            position: relative;
            margin-bottom: 15px;
            background: linear-gradient(180deg, rgba(0,135,90,0.1) 0%, rgba(255,255,255,0) 100%);
        }

        .chart-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .chart-line svg {
            width: 100%;
            height: 100%;
        }

        .chart-labels {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            color: #888;
            margin-bottom: 20px;
        }

        .price-comparison {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 10px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .price-box {
            text-align: center;
        }

        .price-box .label {
            font-size: 11px;
            color: #888;
        }
        .price-box .price {
            font-size: 16px;
            font-weight: 700;
            color: #1a2b4c;
        }
        .price-box .arrow {
            color: #1a2b4c;
            font-size: 14px;
            font-weight: 700;
        }

        .observation-box {
            background-color: #1a2b4c;
            color: #fff;
            padding: 15px;
            border-radius: 6px;
            text-align: center;
        }

        .observation-box .obs-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            opacity: 0.7;
            margin-bottom: 5px;
            display: block;
        }

        .observation-box .obs-text {
            font-size: 12px;
            line-height: 1.4;
        }

        .disclaimer {
            text-align: center;
            font-size: 12px;
            color: #888;
            margin-top: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- SECTION 4: WHAT YOU GET --- */
        .section-what-get {
            padding: 50px 0;
        }

        .section-what-get h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 800;
            color: #1a2b4c;
            margin-bottom: 40px;
        }

        .get-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .get-item {
            text-align: center;
            padding: 20px 10px;
        }

        .get-item .get-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
        }

        .get-item .get-icon svg {
            width: 100%;
            height: 100%;
            fill: #1a2b4c;
        }

        .get-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: #1a2b4c;
            margin-bottom: 10px;
        }

        .get-item p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

        /* --- SECTION 5: WHATSAPP FOOTER --- */
        .section-wa {
            background-color: #1a2b4c;
            padding: 40px 0;
            color: #fff;
        }

        .wa-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .wa-left h2 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .wa-left p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .wa-left ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .wa-left ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .wa-left ul li svg {
            width: 18px;
            height: 18px;
            fill: #00875a;
        }

        .wa-right {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 50px;
            padding: 15px 25px 15px 15px;
            text-decoration: none;
            color: #1a2b4c;
            position: relative;
            min-width: 280px;
        }

        .wa-right .wa-icon {
            background-color: #25d366;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .wa-right .wa-icon svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

        .wa-right .wa-text {
            display: flex;
            flex-direction: column;
        }

        .wa-right .wa-text .wa-action {
            font-size: 16px;
            font-weight: 700;
        }
        
        .wa-right .wa-text .wa-action span {
            background-color: #f5a623;
            color: #1a2b4c;
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-top: 2px;
        }

        .wa-right .wa-arrow {
            background-color: #00875a;
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            font-weight: 700;
        }

        .wa-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #f44336;
            color: #fff;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .wa-footer-note {
            text-align: right;
            font-size: 13px;
            opacity: 0.8;
            margin-top: 15px;
            width: 100%;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .cases-grid, .info-cards, .get-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 32px;
            }
        }

        @media (max-width: 600px) {
            .cases-grid, .info-cards, .get-grid, .trust-right {
                grid-template-columns: 1fr;
            }
            .section-info .header-flex {
                flex-direction: column;
            }
            .hero-features {
                flex-direction: column;
            }
            .hero-features .feat-item {
                width: 100%;
            }
            .wa-flex {
                flex-direction: column;
                align-items: flex-start;
            }
            .wa-right {
                width: 100%;
            }
        }