.retiro-main {
    max-width: 1100px;
    margin: 38px auto 32px auto;
    padding: 0 16px 34px 16px;
    background: #fff7f2;
    border-radius: 24px;
    box-shadow: 0 2px 22px #f5d6c733;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.retiro-main h1 {
    text-align: center;
    color: #b88258;
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 14px #ffe1cf36;
}

.retiro-main h2 {
    color: #a76a4b;
    font-size: 2.1rem;
    text-align: center;
    margin: 44px 0 28px 0;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 7px #ffd7b545;
}

.retiro-main .intro-retiro {
    font-size: 1.48rem;
    color: #b88258;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.3px;
}

.retiro-main p {
    font-size: 1.28rem;
    color: #543524;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.retiro-chakras {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 24px 0;
}

.chakra-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 16px #ffe1cf70;
    padding: 23px 18px;
    min-width: 220px;
    flex: 1 1 240px;
    text-align: center;
    font-size: 1.23rem;
    color: #a76a4b;
    font-weight: bold;
    margin-bottom: 8px;
    border: 2px solid #fbeee2;
}

.retiro-lista-title {
    background: linear-gradient(90deg, #ffe4c7 0%, #ffd7b5 100%);
    padding: 18px 40px 13px 40px;
    border-radius: 13px;
    font-size: 1.5rem;
    color: #b88258;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1.2px;
    box-shadow: 0 1px 7px #ffd7b525;
    display: inline-block;
}

.retiro-lista {
    font-size: 1.28rem;
    color: #6e3d29;
    margin: 0 auto 30px auto;
    max-width: 900px;
    padding-left: 0;
    list-style: none;
    background: linear-gradient(90deg, #fffaf6 0%, #ffe4c7 100%);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 13px #ffe1cf75;
    padding-bottom: 14px;
}

.retiro-lista li {
    margin-bottom: 13px;
    padding: 19px 18px 19px 46px;
    border-radius: 12px;
    background: #fff7f2;
    box-shadow: 0 1px 8px #ffe1cf6a;
    font-weight: 600;
    font-size: 1.13rem;
    text-align: left;
    position: relative;
    animation: aparecer 0.6s cubic-bezier(.68, -0.55, .27, 1.55) backwards;
}

.retiro-lista li:before {
    content: "🌿";
    position: absolute;
    left: 16px;
    top: 19px;
    font-size: 1.3em;
    color: #f38c5a;
    filter: drop-shadow(0 2px 4px #ffd7b548);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.97);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.retiro-ofertas {
    font-size: 1.22rem;
    color: #b88258;
    font-weight: 700;
    margin: 36px auto 18px auto;
    text-align: center;
}

.retiro-extra {
    font-size: 1.15rem;
    color: #a76a4b;
    margin-bottom: 10px;
    text-align: center;
}

.retiro-main .btn-wsp {
    display: inline-block;
    margin-top: 12px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 1.23rem;
    padding: 13px 32px;
    border-radius: 8px;
    box-shadow: 0 1px 5px #25d36655;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.retiro-main .btn-wsp:hover {
    background: #1eb958;
    color: #fff;
}

.retiro-instagram {
    margin-top: 30px;
    text-align: center;
}

.retiro-instagram a {
    display: inline-block;
    color: #b88258;
    background: #fff7f2;
    border: 2px solid #ffd7b5;
    border-radius: 8px;
    padding: 13px 25px;
    font-size: 1.14rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.retiro-instagram a:hover {
    background: #ffd7b5;
    color: #fff;
}

@media (max-width: 1000px) {
    .retiro-main {
        margin: 20px 2vw;
        padding: 0 4vw 18px 4vw;
    }

    .retiro-chakras {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
}

@media (max-width: 700px) {
    .retiro-main h1 {
        font-size: 1.7rem;
    }

    .retiro-main h2 {
        font-size: 1.09rem;
        margin: 22px 0 14px 0;
    }

    .retiro-beneficios,
    .retiro-lista {
        font-size: 1.08rem;
    }

    .retiro-ofertas {
        font-size: 1rem;
    }

    .retiro-main .btn-wsp {
        padding: 10px 12px;
        font-size: 1rem;
    }

    .chakra-card {
        font-size: 1rem;
    }
}