.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #41386b;
    border-radius: 8px;
    padding: 12px 18px;
    background: #41386b;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 24px rgba(65, 56, 107, .22);
}

.button:hover {
    background: #352d5b;
}

.button-secondary {
    background: #fffdf8;
    color: #41386b;
    box-shadow: none;
}

.button-secondary:hover {
    background: #ebe7f3;
}

.button-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 14px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-list,
.cards-grid,
.steps {
    display: grid;
    gap: 16px;
}

.cards-grid {
    grid-template-columns: repeat(4, 1fr);
}

.steps {
    grid-template-columns: repeat(3, 1fr);
}

.feature-list article,
.cards-grid article,
.steps article,
.bio-box,
.schedule-card,
.embed-placeholder {
    border: 1px solid rgba(65, 56, 107, .16);
    border-radius: 8px;
    padding: 24px;
    background: #fffdf8;
}

.feature-list article:nth-child(2),
.cards-grid article:nth-child(2n),
.schedule-card {
    background: #dce7d2;
}

.feature-list article:nth-child(3),
.cards-grid article:nth-child(3n),
.bio-box {
    background: #ebe7f3;
}

.feature-list article h3,
.cards-grid article h3,
.steps article h3,
.bio-box h3,
.schedule-card h2 {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.steps span {
    display: flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e7ca78;
    color: #41386b;
    font-weight: 800;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.benefits span,
.hero-points li {
    border: 1px solid rgba(65, 56, 107, .16);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255, 253, 248, .86);
    color: #625d6d;
    font-size: 14px;
    font-weight: 700;
}

.benefits span:nth-child(2n) {
    background: #dce7d2;
}

.benefits span:nth-child(3n) {
    background: #f5e8ad;
    color: #41386b;
}

.bio-box ul,
.schedule-card ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: #625d6d;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid rgba(65, 56, 107, .16);
    border-radius: 8px;
    background: #fffdf8;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #312d43;
    font-weight: 800;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 8px;
    padding: 44px;
    background: linear-gradient(135deg, #41386b 0%, #4c437d 70%, #7a70ba 100%);
    color: #ffffff;
}

.cta-panel h2,
.cta-panel p {
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9;
    border-radius: 999px;
    padding: 12px 16px;
    background: #6d8759;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(109, 135, 89, .28);
}
