* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

body {
    background-color: #fff5f9;
    display: flex;
    justify-content: center;
    padding: 20px 15px;
}

.container {
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 60px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.tag {
    display: inline-block;
    background-color: #fce4ec;
    color: #d81b60;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero-title {
    font-size: 28px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.hero-title span {
    color: #d81b60;
}

.highlight-box {
    background-color: #fff9c4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
}

.highlight-box span {
    background: #fbc02d;
    color: white;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
}

.bullet-list {
    list-style: none;
    margin-bottom: 20px;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

.bullet-list li::before {
    content: "●";
    color: #d81b60;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.feature-item {
    text-align: center;
    background: #f8f9fa;
    padding: 10px 5px;
    border-radius: 12px;
}

.feature-icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #d81b60;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 12px;
    color: #444;
    font-weight: 500;
}

.hero-image-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 360px;
    
    background: #f0e6ee;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    position: relative;
    background-image: linear-gradient(135deg, #f8e8f0 25%, #f0dce8 25%, #f0dce8 50%, #f8e8f0 50%, #f8e8f0 75%, #f0dce8 75%, #f0dce8 100%);
    background-size: 20px 20px;
}

.badge-circle {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fce4ec;
    border: 3px solid white;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-circle span {
    font-size: 16px;
    font-weight: 700;
    color: #d81b60;
    line-height: 1.2;
}

.badge-circle small {
    font-size: 11px;
    color: #666;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.trust-text {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 25px 0;
}

.section-title-wrap::before,
.section-title-wrap::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d81b60;
    opacity: 0.3;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.card-img {
    width: 100%;
    height: 100px;
    background: #e0e0e0;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    background-image: radial-gradient(circle, #d3d3d3 1px, transparent 1px);
    background-size: 10px 10px;
}

.card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.card-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.step-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    position: relative;
}

.step-item {
    text-align: center;
    padding: 15px 10px;
    background: #fafafa;
    border-radius: 16px;
}

.step-number-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #d81b60;
    border-radius: 50%;
    color: #d81b60;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.step-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 12px;
    color: #666;
}

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

.why-item {
    text-align: center;
    background: #fff;
    padding: 15px 10px;
    border-radius: 12px;
}

.why-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.why-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-desc {
    font-size: 11px;
    color: #666;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.testimonial-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.test-img {
    width: 60px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 10px;
    background-image: repeating-linear-gradient(45deg, #d3d3d3 0px, #d3d3d3 2px, transparent 2px, transparent 4px);
}

.stars {
    color: #fbc02d;
    font-size: 14px;
    margin-bottom: 8px;
}

.test-text {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    font-style: italic;
}

.test-name {
    font-size: 12px;
    font-weight: 600;
    color: #222;
}

.footer-cta {
    margin-top: 40px;
}

.space-bottom {
    margin-top: 30px;
    border: 2px dashed #f8bbd0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #d81b60;
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .container { padding: 40px; }
    .hero-title { font-size: 36px; }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(6, 1fr); }
}