﻿

/* RESPONSIVE */


/********  XL  *******/
@media screen and (min-width:1600px) {

    #paginaTarjeta {
        width: 500px;
        position: absolute;
        left: 50%;
        top: 30px;
        transform: translate(-50%, 10%);
        --photo-bottom: 110px;
        box-sizing: border-box;
        z-index:10;
        margin-left:20px;
    }

        #paginaTarjeta > img {
            display: block;
            max-width: 100%;
            height: auto;
            
        }

            #paginaTarjeta > img:first-child {
                width: 100%;
                height: auto;
                display: block;
                user-select: none;
                pointer-events: none;
            }

            #paginaTarjeta > img:nth-child(2) {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                object-fit: cover; /* recorta la foto dentro del círculo */
                position: absolute;
                left: 50%;
                /*transform: translateX(-50%);*/
                transform: translate(-50%, 40%);
                bottom: var(--photo-bottom);
                z-index: 2;
                border: 6px solid #ffffff; /* borde blanco para separar visualmente */
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
                background-color: #eee; /* fallback si no hay imagen */
            }

    #capaTransparenteTarjeta {
      
        position: absolute;
        border-top: 1px solid #ddd; 
        width: 600px;
        height: 900px;
        z-index: 1;
        background-color: white;
        opacity: 0.5;
        margin-left:-50px;
        margin-top:-50px;
        transform: translate(50%, 5%);
    }

    #tableBotonesTarjeta {
        margin: 0 auto;
        width: 400px;
        height: 50px;
        z-index: 20;
        font-size: 18px;
        margin-top: 580px;
        color: white;
        font-weight: bold;
        width: 400px;
        transform: translate(50%, 9%);
        margin-left: 150px;
    }

    #tableBotonesTarjeta .bTarjeta{

        height:80px;
        width:150px;
        padding-top:15px;
    }

     /*   #tableBotonesTarjeta #bRetocar {
            padding-top: 25px;
        }
*/
    #avisoTarjeta {

        position: absolute;
        font-size: 16px;
        top: 10px;
        color: white;
        font-weight: bold;
        width: 500px;
        height: 60px;
        box-sizing: border-box;
        display: flex;
        align-items: center; 
        transform: translate(50%, 9%);
        margin-left: 50px;
        padding: 0 10px;
    }

        #spanPuntos .dot {
            opacity: 0;
            display: inline-block;
            display:inline;
            animation: dot 1s infinite;
        }
            #spanPuntos .dot:nth-child(1) {
                animation-delay: 0s;
            }
            #spanPuntos .dot:nth-child(2) {
                animation-delay: 0.2s;
            }
            #spanPuntos .dot:nth-child(3) {
                animation-delay: 0.4s;
            }

    @keyframes dot {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }


    
}



/********  L  *******/
@media screen and (min-width:950px)and (max-width:1600px) {

    #paginaTarjeta {
        width: 500px;
        position: absolute;
        left: 50%;
        top: 30px;
        transform: translate(-50%, 10%);
        --photo-bottom: 110px;
        box-sizing: border-box;
        z-index: 10;
        margin-left: 20px;
    }

        #paginaTarjeta > img {
            display: block;
            max-width: 100%;
            height: auto;
        }

            #paginaTarjeta > img:first-child {
                width: 100%;
                height: auto;
                display: block;
                user-select: none;
                pointer-events: none;
            }

            #paginaTarjeta > img:nth-child(2) {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                object-fit: cover; /* recorta la foto dentro del círculo */
                position: absolute;
                left: 50%;
                /*transform: translateX(-50%);*/
                transform: translate(-50%, 40%);
                bottom: var(--photo-bottom);
                z-index: 2;
                border: 6px solid #ffffff; /* borde blanco para separar visualmente */
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
                background-color: #eee; /* fallback si no hay imagen */
            }

    #capaTransparenteTarjeta {
        position: absolute;
        border-top: 1px solid #ddd;
        width: 600px;
        height: 900px;
        z-index: 1;
        background-color: white;
        opacity: 0.5;
        margin-left: -50px;
        margin-top: -50px;
        transform: translate(50%, 5%);
    }

    #tableBotonesTarjeta {
        margin: 0 auto;
        width: 400px;
        height: 50px;
        z-index: 20;
        font-size: 18px;
        margin-top: 580px;
        color: white;
        font-weight: bold;
        width: 400px;
        transform: translate(-30%, 9%);
        margin-left: 150px;
    }

        #tableBotonesTarjeta .bTarjeta {
            height: 80px;
            width: 150px;
            padding-top: 15px;
        }

       /* #tableBotonesTarjeta #bRetocar {
            padding-top: 25px;
        }*/

    #avisoTarjeta {
        position: absolute;
        font-size: 16px;
        top: 10px;
        color: white;
        font-weight: bold;
        width: 500px;
        height: 60px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        transform: translate(-10%, 9%);
        margin-left: 50px;
        padding: 0 10px;
    }

    #spanPuntos .dot {
        opacity: 0;
        display: inline-block;
        display: inline;
        animation: dot 1s infinite;
    }

        #spanPuntos .dot:nth-child(1) {
            animation-delay: 0s;
        }

        #spanPuntos .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        #spanPuntos .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

    @keyframes dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }



}

/********  M  *******/
@media screen and (min-width:650px)and (max-width:950px) {

    #paginaTarjeta {
        width: 500px;
        position: absolute;
        left: 50%;
        top: 30px;
        transform: translate(-50%, 10%);
        --photo-bottom: 110px;
        box-sizing: border-box;
        z-index: 10;
        margin-left: 20px;
    }

        #paginaTarjeta > img {
            display: block;
            max-width: 100%;
            height: auto;
        }

            #paginaTarjeta > img:first-child {
                width: 100%;
                height: auto;
                display: block;
                user-select: none;
                pointer-events: none;
            }

            #paginaTarjeta > img:nth-child(2) {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                object-fit: cover; /* recorta la foto dentro del círculo */
                position: absolute;
                left: 50%;
                /*transform: translateX(-50%);*/
                transform: translate(-50%, 40%);
                bottom: var(--photo-bottom);
                z-index: 2;
                border: 6px solid #ffffff; /* borde blanco para separar visualmente */
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
                background-color: #eee; /* fallback si no hay imagen */
            }

    #capaTransparenteTarjeta {
        position: absolute;
        border-top: 1px solid #ddd;
        width: 600px;
        height: 900px;
        z-index: 1;
        background-color: white;
        opacity: 0.5;
        margin-left: -50px;
        margin-top: -50px;
        transform: translate(50%, 5%);
    }

    #tableBotonesTarjeta {
        margin: 0 auto;
        width: 400px;
        height: 50px;
        z-index: 20;
        font-size: 18px;
        margin-top: 580px;
        color: white;
        font-weight: bold;
        width: 400px;
       
        /*transform: translate(50%, 9%);*/
        /*margin-left: 150px;*/
    }

        #tableBotonesTarjeta .bTarjeta {
            height: 80px;
            width: 150px;
            padding-top: 15px;
        }

      /*  #tableBotonesTarjeta #bRetocar {
            padding-top: 25px;
        }*/

    #avisoTarjeta {
        position: absolute;
        font-size: 16px;
        top: 10px;
        color: white;
        font-weight: bold;
        width: 500px;
        height: 60px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        transform: translate(25%, 9%);
        margin-left: 50px;
        padding: 0 10px;
    }

    #spanPuntos .dot {
        opacity: 0;
        display: inline-block;
        display: inline;
        animation: dot 1s infinite;
    }

        #spanPuntos .dot:nth-child(1) {
            animation-delay: 0s;
        }

        #spanPuntos .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        #spanPuntos .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

    @keyframes dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    

   


}


/********  S  *******/
@media screen and (min-width:500px)and (max-width:650px) {

    #paginaTarjeta {
        width: 500px;
        position: absolute;
        /* left: 50%;*/
        top: 0px;
          transform: translate(4%, 2%);
        --photo-bottom: 110px;
        box-sizing: border-box;
        z-index: 10;
        /* margin-left: 20px;*/
    }

        #paginaTarjeta > img {
            display: block;
            max-width: 100%;
            height: auto;
        }

            #paginaTarjeta > img:first-child {
                width: 100%;
                height: auto;
                display: block;
                user-select: none;
                pointer-events: none;
            }

            #paginaTarjeta > img:nth-child(2) {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                object-fit: cover; /* recorta la foto dentro del círculo */
                position: absolute;
                left: 50%;
                /*transform: translateX(-50%);*/
                transform: translate(-50%, 40%);
                bottom: var(--photo-bottom);
                z-index: 2;
                border: 6px solid #ffffff; /* borde blanco para separar visualmente */
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
                background-color: #eee; /* fallback si no hay imagen */
            }

    #capaTransparenteTarjeta {
        position: absolute;
        border-top: 1px solid #ddd;
        width: 600px;
        height: 900px;
        z-index: 1;
        background-color: white;
        opacity: 0.5;
        margin-left: -50px;
        margin-top: -50px;
        transform: translate(50%, 5%);
    }

    #tableBotonesTarjeta {
        margin: 0 auto;
        width: 400px;
        height: 50px;
        z-index: 20;
        font-size: 18px;
        margin-top: 500px;
        color: white;
        font-weight: bold;
        width: 400px;
        /*transform: translate(50%, 9%);*/
        /*margin-left: 150px;*/
    }

        #tableBotonesTarjeta .bTarjeta {
            height: 80px;
            width: 150px;
            padding-top: 15px;
        }

       /* #tableBotonesTarjeta #bRetocar {
            padding-top: 25px;
        }*/

    #avisoTarjeta {
        position: relative;
       
        margin-top: -40px;
        /* top: 10px;*/

        font-size: 12px;
        color: #0377aa;
        color: white;
        /*font-weight: bold;*/
        width: 500px;
        height: 60px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        /* transform: translate(25%, 9%);*/
        /* margin-left: 50px;*/
        padding: 0 10px;
        z-index: 1000;
        line-height: 20px;
        
    }

    #spanPuntos .dot {
        opacity: 0;
        display: inline-block;
        display: inline;
        animation: dot 1s infinite;
    }

        #spanPuntos .dot:nth-child(1) {
            animation-delay: 0s;
        }

        #spanPuntos .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        #spanPuntos .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

    @keyframes dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    
    

   


}



/********  XS  *******/
@media screen and (max-width:500px) {

    #paginaTarjeta {
        width: 500px;
        position: absolute;
       /* left: 50%;*/
        top: 0px;
      /*  transform: translate(-50%, 10%);*/
        --photo-bottom: 110px;
        box-sizing: border-box;
        z-index: 10;
       /* margin-left: 20px;*/
    }

        #paginaTarjeta > img {
            display: block;
            max-width: 100%;
            height: auto;
        }

            #paginaTarjeta > img:first-child {
                width: 100%;
                height: auto;
                display: block;
                user-select: none;
                pointer-events: none;
            }

            #paginaTarjeta > img:nth-child(2) {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                object-fit: cover; /* recorta la foto dentro del círculo */
                position: absolute;
                left: 50%;
                /*transform: translateX(-50%);*/
                transform: translate(-50%, 40%);
                bottom: var(--photo-bottom);
                z-index: 2;
                border: 6px solid #ffffff; /* borde blanco para separar visualmente */
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
                background-color: #eee; /* fallback si no hay imagen */
            }

    #capaTransparenteTarjeta {
        position: absolute;
        border-top: 1px solid #ddd;
        width: 600px;
        height: 900px;
        z-index: 1;
        background-color: white;
        opacity: 0.5;
        margin-left: -50px;
        margin-top: -50px;
        transform: translate(50%, 5%);
    }

    #tableBotonesTarjeta {
        margin: 0 auto;
        width: 400px;
        height: 50px;
        z-index: 20;
        font-size: 18px;
        margin-top: 480px;
        color: white;
        font-weight: bold;
        width: 400px;
        /*transform: translate(50%, 9%);*/
        /*margin-left: 150px;*/
    }

        #tableBotonesTarjeta .bTarjeta {
            height: 80px;
            width: 150px;
            padding-top: 15px;
        }

       /* #tableBotonesTarjeta #bRetocar {
            padding-top: 25px;
        }*/

    #avisoTarjeta {


        position: relative;
       margin-top:-40px;
 /* top: 10px;*/
 
 font-size: 16px;
  
        color: #0377aa;
        color:white;
        /*font-weight: bold;*/
        width: 500px;
        height: 60px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        /* transform: translate(25%, 9%);*/
        /* margin-left: 50px;*/
        padding: 0 10px;
        z-index:1000;
        line-height:20px;
    }

    #spanPuntos .dot {
        opacity: 0;
        display: inline-block;
        display: inline;
        animation: dot 1s infinite;
    }

        #spanPuntos .dot:nth-child(1) {
            animation-delay: 0s;
        }

        #spanPuntos .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        #spanPuntos .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

    @keyframes dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    


}

/* FIN MEDIA QUERIES*/
/*******************************************************************/









body {
}

/*#paginaTarjeta{
    position:relative;
    margin:0 auto;
    width:90%;
    color:white;
}
*/