.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 {
    position: relative;
    border: 1px solid rgba(65, 56, 107, .16);
    border-radius: 8px;
    padding: 24px;
    background: rgba(235, 231, 243, .42);
}

.feature-list article::before,
.cards-grid article::before,
.steps article::before,
.bio-box::before,
.schedule-card::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e7ca78;
    box-shadow: 0 0 0 6px rgba(231, 202, 120, .18);
}

.feature-list article:nth-child(2),
.cards-grid article:nth-child(2n),
.schedule-card {
    background: rgba(235, 231, 243, .58);
}

.feature-list article:nth-child(3),
.cards-grid article:nth-child(3n),
.bio-box {
    background: rgba(235, 231, 243, .70);
}

.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: #ebe7f3;
    color: #41386b;
    font-weight: 800;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.growth-flow {
    position: relative;
    display: grid;
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
    margin-top: 40px;
}

.growth-flow::before {
    content: "";
    position: absolute;
    left: 21%;
    right: 7%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(65, 56, 107, .20), rgba(122, 112, 186, .08));
}

.growth-flow::after {
    content: "";
    position: absolute;
    left: calc(21% + 28px);
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(65, 56, 107, .18), transparent);
}

.flow-core,
.flow-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(65, 56, 107, .16);
    border-radius: 8px;
    background: rgba(255, 253, 248, .82);
    box-shadow: 0 20px 54px rgba(65, 56, 107, .08);
}

.flow-core {
    padding: 30px;
    background:
        radial-gradient(circle at 84% 18%, rgba(231, 202, 120, .26), transparent 24%),
        linear-gradient(135deg, rgba(255, 253, 248, .92), rgba(235, 231, 243, .88));
}

.flow-core span {
    display: block;
    margin-bottom: 14px;
    color: #b08442;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.flow-core strong {
    display: block;
    color: #312d43;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.05;
}

.flow-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.flow-card {
    min-height: 170px;
    padding: 20px;
}

.flow-card::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 30px;
    width: 14px;
    height: 1px;
    background: rgba(65, 56, 107, .18);
}

.flow-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(231, 202, 120, .34);
    color: #41386b;
    font-size: 12px;
    font-weight: 800;
}

.flow-card h3 {
    margin-top: 18px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.flow-card p {
    font-size: 15px;
    line-height: 1.55;
}

.flow-card-primary {
    background: rgba(235, 231, 243, .82);
}

.benefits span,
.hero-points li {
    border: 1px solid rgba(65, 56, 107, .16);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(235, 231, 243, .58);
    color: #625d6d;
    font-size: 14px;
    font-weight: 700;
}

.benefits span {
    box-shadow: 0 10px 28px rgba(65, 56, 107, .06);
}

.benefits span:nth-child(2n) {
    background: rgba(235, 231, 243, .70);
}

.benefits span:nth-child(3n) {
    background: rgba(235, 231, 243, .82);
    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;
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0;
    background: transparent;
    box-shadow: 0 14px 32px rgba(109, 135, 89, .28);
}

.whatsapp-float img {
    display: block;
    width: 58px;
    height: 58px;
}
