/*@font-face {
    font-family: 'CustomFont';
    src: url('../assets/font/PangeaAfrikan-RegularWeb.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CustomFontBold';
src: url('../assets/font/PangeaAfrikan-BoldWeb.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}*/

:root {
    --darkBlue: #87bdd1;
    --lightBlue: #e5fffe;
    --grey: #555656;
    --white: #FFF;
}

h2, h3 ,h4, h5{
    font-family: sans-serif!important;
}

html,
body {
    font-family: sans-serif!important;
    padding: 0px;
    margin: 0px;
    scroll-behavior: smooth;
    /*overflow-x: hidden;*/
    cursor: default;
    background-color: var(--darkBlue);
}

/* width */
::-webkit-scrollbar {
    width:7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--darkBlue);
    border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.social-media{
    position: fixed;
    right: 0;
    top: 45px;
    margin: 10px;
    z-index: 150000;
}

.social-media img {
    width: 40px;
    height: auto;
    cursor: pointer;
    margin: 5px;
}

.whatsapp-icon img {
    width: 60px;
    height: auto;
    margin: 10px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 200;
}


.SM:hover{
    background-color: #051c2c;
}


/* MENU */
.menu-container
{
    position: relative;
    z-index: 1;
    top: 20px;
}

.menu
{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    background-color: rgba(135,189,209,0.75);
    margin: 0;
}

.menu ul {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin: 0;
    padding: 0;
}

.menu ul li {
    font-size: 22px;
    color: var(--white);
    display: inline-flex;
    box-sizing: border-box;
    list-style: none;
    justify-content: center;
    padding: 5px;
    margin: 0 15px;
}

.menu ul li {
    position: relative;
    display: inline-block;
    padding-bottom: 5px; /* Space for the line */    
}

.menu ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(60deg, #fffc00, #a4a91e, #859128dc, #fffc00, #a4a91e); /* Gold gradient */
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.menu ul li:hover::after 
{
    width: 100%;
    left: 0;      
}

.menu ul li:hover
{
    text-shadow: 1px 1px 15px var(--white);  
}

/* MENU RESPONSIVE */
.menu-responsive,.burger-icon
{
    display: none;
}

/* INICIO */
.inicio
{
    min-height: 100vh;
    margin: 0;
}

.youtube-videos
{
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.youtube-videos iframe
{
    width: 23%;
    height: 230px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px 8px rgba(0,0,0,0.2);
}

.fadeIn 
{
    animation: fadeIn 1s ease-in-out forwards;
}

.fadeOut
{
    animation: fadeOut 1s ease-in-out forwards;
}
  
@keyframes fadeIn
{
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeOut
{
    from {opacity: 1} 
    to {opacity: 0}
}

.background1
{
    background-image: url('../assets/image/tuverdaderoserUno.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.background2
{
    background-image: url('../assets/image/tuverdaderoserTres.webp');
    background-repeat: no-repeat;
    background-size: cover;
}
/*
.background3
{
    background-image: url('../assets/image/tuverdaderoserTres.png');
    background-repeat: no-repeat;
    background-size: cover;
}
*/
.logo img
{
    width: 22%;
    height: auto;
    position: absolute;
    top: 80px;
    right: 150px;    
    z-index: 10;
}

.frase
{
    font-size: 3vh;    
    position: absolute;
    top: 200px;
    left: 150px;
    color: var(--white);
    text-align: center;
    z-index: 10;
}

/* SOBRE MI */
.sobremiSection
{
    background-color: var(--white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.sobremilogo
{
    width: 40%;
    display: block;
    margin: auto;
}

.divisor
{
    width: 100%;
    height: 2px;
    background: linear-gradient(60deg, #fffc00, #a4a91e, #859128dc, #fffc00, #a4a91e); /* Gold gradient */
    display: block;
    margin: 40px auto 40px auto;
    border-radius: 10px;
}

.divisor-testimonios
{
    width: 100%;
    height: 2px;
    background: linear-gradient(60deg, #fffc00, #a4a91e, #859128dc, #fffc00, #a4a91e); /* Gold gradient */
    display: block;
    margin: 20px auto 20px auto;
    border-radius: 10px;
}

.sobremiContenido
{
    margin: 50px 150px 50px 150px;
}

.adriana-abreu-foto
{
    float: left; 
    vertical-align: top; 
    margin: 20px; 
    width: 300px; 
    height: auto; 
    border-radius: 10px; 
    border: 2px solid #4387a0
}

.adriana-abreu-foto-responsive
{
display: none;
}

.sobremiContenido h1, .serviciosContenido h1
{
    text-align: center;
    margin: 40px;
    color: var(--darkBlue);
}

.sobremiContenido p
{
    color: var(--darkBlue);
    font-size: 24px;
    text-align: justify;
}


/* CONSULTAS */
.tarot-parte1, .tarot-parte2
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarot-parte1 h1
{
    color: var(--darkBlue);
    background-color: var(--white) ;
    padding: 20px;
    border-radius: 10px;
}

.tarot-parte1 p
{
    text-align: justify;
    font-size: 18px;
    color: var(--darkBlue);
    background-color: var(--white) ;
    padding: 20px;
    border-radius: 10px;
}

.fondo-tarot
{
    background-image: url('../assets/image/fondoTarot.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tarot-carta-titulo
{
    color: var(--white);
    z-index: 500;
    text-align: center;
    background-color: rgba(135, 189, 209, 0.8);
    padding: 10px;
    border-radius: 10px;
}

.flip-card
{
    background-color: transparent;
    width: 450px;
    height: 680px;
    perspective: 1000px;
    margin: auto;
    display: block;
}

.flip-card-front h1
{
    color: var(--white);
    margin-top: 200px;
}

.flip-card-front p
{
    margin-top: 20px;
    color: var(--white);
    font-size: 20px;
}
  
.flip-card-inner
{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);  
    border-radius: 15px;   
}
  
.flip-card:hover .flip-card-inner
{
    transform: rotateY(180deg);
    box-shadow: 1px 1px 20px 15px #FFF;
    transition: all 1s;
}
  
.flip-card-front, .flip-card-back
{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px; 
    border: 10px solid var(--white);
    padding: 20px;
}

.flip-card-front h1
{
    color: var(--white);
}

.flip-card-front
{
    background-image: url("../assets/image/cards2.png");
    background-position: center center;
    color: var(--darkBlue);
    background-size: cover;
}

.flip-card-back
{
    background-image: url("../assets/image/cards3.png");
    background-position: center center;
    transform: rotateY(180deg);   
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--white);
    border: 2px solid var(--darkBlue);
}

.card-text h1 {
    color: var(--darkBlue);
}

.card-text p
{
    color: var(--darkBlue);
    text-align: center;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    font-size: 20px;
}

.paypal{
    background-color: var(--white);
    width: 145px;
    display: flex;
    justify-content: center;
    margin: auto auto;
    border-radius: 10px;
    box-shadow: inset -4px -4px 5px 0px grey;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.paypal:hover
{
    box-shadow: inset 4px 4px 5px 0px grey;
}

.paypal-icon{
    width: 140px;
    
}

/* KUNDALINI */

.fondo-kundalini
{
    background-image: url('../assets/image/test.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -10px center;
}

.kundalini-responsive
{
    display: none;
}

.kundalini-parte1, .kundalini-parte2
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.kundalini-text{
    padding: 30px 60px;
}

.kundalini-parte1 h1:nth-child(1)
{
    color: var(--white);
    /*background-color: rgba(18, 8, 41, 0.6);*/
    padding: 20px;
    border-radius: 10px;
}

.kundalini-parte1 h1:nth-child(2)
{
    color: var(--white);
}

.kundalini-parte1 p
{
    text-align: justify;
    font-size: 18px;
    color: var(--white);
    /*background-color: rgba(18, 8, 41, 0.6);*/
    padding: 20px;
    border-radius: 10px;
}

/*GUERREROS DE LUZ*/
.guerreros-de-luz
{
    background-color: var(--white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center;
}

.fondo-guerreros
{
    background-image: url('../assets/image/guerrerosdeluz.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;    
}

.beneficios
{
    color: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    top: 43%;
    background-color: rgba(255,255,255,0.2);
    width: 300px;
    border-radius: 20px;
    padding: 10px;
    margin: auto auto;

}

.fondo-guerreros h1:nth-child(1)
{
    color: var(--white); 
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
}

.unete-guerrero
{
    color: var(--white); 
    display: flex;
    margin: 30% auto 0px auto;
    animation:lighting 2s ease-in-out infinite;
    font-size: 60px;

}

.unete-guerrero a
{
    font-size: 60px;
    text-decoration: none;
    color: var(--white);
}

@keyframes lighting
{
    0% { text-shadow: 0 0 10px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff;  } 
    50%{ text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;  }
    100% { text-shadow: 0 0 10px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff; }
}

.testimonios-section
{
    background-color: var(--white);
    min-height: 100vh;
    margin: 0;
    padding: 40px 0;
}

.testimonios h1
{
    color: var(--darkBlue); 
    margin: auto auto;
    text-align: center;
    margin: 40px 0;
}

.seccion-contacto
{
    background-color: var(--darkBlue);
    margin: 0;
    padding: 0;
    min-height: 50vh;
}

.seccion-contacto h1
{
    color: var(--white); 
    margin: auto auto;
    text-align: center;
    margin: 40px 0;
}

.logos-redes-sociales, .logo-contacto
{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh;
}

.logos-redes-sociales img
{
    margin: 0px 20px;
}

.logo-contacto img
{
    position: absolute;
    width: 45%;
    height: auto;
}

footer
{
    margin: 0;
    padding: 0;
    text-align: center;
}

@media screen and (min-width: 801px) and (max-width: 1250px)
{

}

@media screen and (max-width: 820px) {

    /* WHATSAPP ICON */

    .social-media img {
        width: 50px;
        height: auto;
        cursor: pointer;
    }

    .social-media{
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 150000;
        margin: 20px;
    }

    .youtube-videos
    {
        display: inline-table!important;
    }

    .youtube-videos iframe
    {
        width: 45%;
        height: 230px;
        margin: 5px;
        border-radius: 10px;
        box-shadow: 2px 2px 8px 8px rgba(0,0,0,0.2);
    }
    
  
    /* MENU RESPONSIVE */

    .menu-responsive{
        margin: auto auto;
    }

    .burger-icon {    
        display: inline-grid;
        cursor: pointer;
        width: 35px; /* Width of the burger icon */
        height: 35px; /* Height of the burger icon */
        position: fixed;
        z-index: 1000;
        background-color: var(--white);
        margin: 10px;
        border-radius: 5px;
        align-items: center;
        justify-content: center;
        padding: 2px;
        border: 1px solid var(--darkBlue);
    }

    .burger-icon img
    {
        width: 100%;
        height: auto;
    }

    .line {
        background-color: var(--darkBlue); /* Color of the lines */
        height: 4px; /* Height of each line */
        width: 25px;
        transition: all 0.3s ease; /* Smooth transition */
        margin: 0;
    }

    .menu-responsive {
        display: none; /* Hide the menu initially */
    }

    .menu-responsive.active {
        display: block; /* Show menu when active */
    }

    .menu-responsive {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 20;
        text-align: center;
        background-color: rgba(135, 189, 209, 0.8);
        padding-top: 50%;
        width: 100vw;
        height: 100vh;
    }
    
    .menu-responsive ul {
        display: inline-block;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically */
        margin: 0;
        padding: 0;
        z-index: 10;
    }
    
    .menu-responsive ul li{
        list-style: none;
        color: white;
        margin: 18px;
        font-size: 18px;
    }

    .menu-buttons-container
    {
        transition: all .2s;
    }

    .social-media
    {
        display: none;
    }

    .background1,.background2,.background3
    {
        background-size: contain!important;
        background-position: 0 63%!important;
    }

    .logo img
    {
        width: 75%;
        height: auto;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto auto;
        top: 2%!important;
    }

    .frase
    {
        font-size: 16px;    
        position: absolute;
        top: 83%;
        left: 0;
        right: 0;
        margin: auto auto;
        color: var(--white);
        text-align: center;
        padding: 10px;
    }

    .adriana-abreu-foto, .menu, .kundalini-parte2
    {
        display: none;
    }

    .adriana-abreu-foto-responsive
    {
        vertical-align: top; 
        margin: 20px; 
        width: 300px; 
        height: auto; 
        border-radius: 10px; 
        border: 2px solid #4387a0;
        display: inherit;
    }

    .sobremiContenido{
        margin: 0px!important;
        padding: 60px 0px!important;
    }

    .sobremiContenido p
    {
        text-align: left;
    }

    .kundalini-text, .kundalini-text p, .kundalini-parte1
    {
        margin: 0px;
        padding: 60px 0px;
    }

    .kundalini-text h1
    {
        text-align: center;
    }

    .kundalini-responsive
    {
        display: block;
        height: auto;
        display: flex;
        margin: auto auto; 
        position: relative;
    }

    .kundalini-image-responsive
    {
        display: block;
        width: 250px;
        height: auto;
        display: flex;
        margin: auto auto; 
    }

    .kundalini-effect-responsive
    {
        display: block;
        width: 60px;
        height: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto auto; 
        position: absolute;
    }


    .fondo-kundalini
    {
        background-position: 50%;
    }

    .tarot-content{
        margin: 40px 0px!important;;
        padding: 0px!important;
        background-color: var(--white);
        border-radius: 10px;
    }

    .tarot-parte1 h1
    {
        background-color: var(--white);
        color: var(--darkBlue);
        text-align: center;
    }

    .tarot-parte1 p
    {
        background-color: var(--white);
        color: var(--darkBlue);
    }

    .tarot-parte2{
        margin: 0px!important;
        padding: 0px!important;
    }
    
    .fondo-tarot
    {
        padding-bottom: 40px;
    }
    
    .carousel-control-next-icon,
    .carousel-control-prev-icon
    {
        display: inline-block;
        width: 20px;
        height: 60px;
        background-color: #87bdd1;
        border-radius: 50px;
    }

    .unete-guerrero
    {
        margin: 115% auto 0px auto;
    }

        .beneficios
    {
        top: 41%;
        background-color: rgba(255,255,255,0);
    }

    .inicio
    {
        background-position: 50%;
    }

    .logo-contacto img
    {
        position: absolute;
        width: 60%;
        height: auto;
    }

    .seccion-contacto
    {
        padding: 40px 0px;
    }

    footer
    {
        margin: 0px;
        padding: 0px 0px 40px 0px;
        text-align: center;
    }


}