/*==========================================*
=            MODAL MANTRAS                 =
*==========================================*/

.mantra-modal{

    border:none;

    border-radius:25px;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        rgba(240,249,255,.97) 0%,
        rgba(221,242,255,.96) 45%,
        rgba(201,234,255,.95) 100%
    );

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 20px 60px rgba(13,110,253,.18);

}


/*==========================================*
=               CABECERA                   =
*==========================================*/

.mantra-modal .modal-header{

    background:linear-gradient(
        135deg,
        #4facfe 0%,
        #00c6fb 100%
    );

    color:#fff;

    border:none;

    padding:18px 25px;

}

.mantra-modal .modal-title{

    font-weight:700;

    font-size:1.35rem;

    letter-spacing:.5px;

}

.mantra-modal .btn-close{

    filter:invert(1);

}


/*==========================================*
=                 CUERPO                   =
*==========================================*/

.mantra-modal .modal-body{

    padding:30px;

    color:#2d3748;

}


/*==========================================*
=                 IMAGEN                   =
*==========================================*/

.mantra-modal img{

    width:100%;

    max-height:320px;

    object-fit:cover;

    border-radius:18px;

    border:5px solid #fff;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:.35s;

}

.mantra-modal img:hover{

    transform:scale(1.02);

}


/*==========================================*
=             TITULOS PRINCIPALES          =
*==========================================*/

#mantraTitulo{

    margin-top:15px;

    color:#0d6efd;

    font-weight:700;

    line-height:1.4;

}

#mantraIdioma{

    color:#6c757d;

    font-style:italic;

}


/*==========================================*
=          TEXTO DEL MANTRA (OM)           =
*==========================================*/

#mantraTexto{

    width:170px;

    height:170px;

    margin:20px auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #f8fbff,
        #dff3ff
    );

    border:6px solid #fff;

    color:#0d6efd;

    font-size:3rem;

    font-weight:800;

    letter-spacing:4px;

    box-shadow:
        0 0 0 8px rgba(13,110,253,.08),
        0 15px 35px rgba(13,110,253,.18);

    transition:.35s;

}

#mantraTexto:hover{

    transform:scale(1.05);

}


/*==========================================*
=                 TABLA                    =
*==========================================*/

.mantra-modal table{

    margin-bottom:0;

}

.mantra-modal table th{

    width:180px;

    color:#0d6efd;

    font-weight:700;

    vertical-align:top;

    padding:10px;

}

.mantra-modal table td{

    color:#444;

    padding:10px;

}


/*==========================================*
=               SUBTITULOS                 =
*==========================================*/

.mantra-modal h5{

    color:#0d6efd;

    font-weight:700;

    margin-bottom:12px;

}


/*==========================================*
=            TARJETAS DE TEXTO             =
*==========================================*/

#mantraSignificado,
#mantraBeneficio,
#mantraAfirmacion{

    background:rgba(255,255,255,.60);

    border-left:5px solid #4facfe;

    border-radius:12px;

    padding:18px;

    color:#444;

    text-align:justify;

    line-height:1.8;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

    margin-bottom:20px;

}

#mantraBeneficio{

    border-left-color:#198754;

}

#mantraAfirmacion{

    border-left-color:#00c6fb;

    font-style:italic;

}


/*==========================================*
=            PALABRAS CLAVE                =
*==========================================*/

#mantraPalabras{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

#mantraPalabras .badge{

    background:linear-gradient(
        135deg,
        #4facfe,
        #00c6fb
    );

    color:#fff;

    font-size:.90rem;

    font-weight:600;

    padding:8px 15px;

    border-radius:50px;

    box-shadow:0 4px 10px rgba(13,110,253,.20);

}


/*==========================================*
=               SEPARADOR                  =
*==========================================*/

.mantra-modal hr{

    border-color:rgba(13,110,253,.18);

    margin:25px 0;

}


/*==========================================*
=               SCROLL                     =
*==========================================*/

.mantra-modal .modal-body::-webkit-scrollbar{

    width:8px;

}

.mantra-modal .modal-body::-webkit-scrollbar-thumb{

    background:#4facfe;

    border-radius:20px;

}


/*==========================================*
=             RESPONSIVE                   =
*==========================================*/

@media(max-width:991px){

    .mantra-modal .modal-body{

        padding:20px;

    }

    .mantra-modal table th{

        width:130px;

    }

    #mantraTexto{

        width:140px;

        height:140px;

        font-size:2.4rem;

    }

}