
:root {
  --card-height:  60vh;
  --card-width:   calc(var(--card-height) / 1.5);
  --card-media:   calc(var(--card-height) / 2.5);
  


/* ******************************************** */


/* COLOR DE CAJA DE CONTENIDO */
  /* --bg:           25 28 41; */
  /* --bg:           25 28 41; */


  --color:        18 199 250;
  /* --color:        18 199 250; */


  /* background de FONDO */
  
  --bg:       25, 28, 41, 0.909;

   /* background: rgba(25, 28, 41, 0.836) ;   */




/* ----------------------------------------------- */
  
}

body {
    min-height: 100vh;
    /* background: rgba(120, 197, 18, 0.781); */
    /* background: rgba(var(--bg) / 90%); */
    background: linear-gradient(#041b31 10%, #031841 95%); 
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    font-family: Roboto;
}

.card {
    background: rgba(var(--bg));
    width: var(--card-width);
    height: var(--card-height);
    padding: 30px;
    position: relative;
    border-radius: 6px;
    color: rgba(var(--color) / 60%);
    cursor: pointer;
    text-align: center;
    margin-top: 30px;
}


 

.card p  {
    text-align: left;
}

.card a {
  color: rgba(var(--color) / 60%);
  text-decoration: none;
}

.icons ion-icon {
    font-size: 2.5rem;
    margin: 5px;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        --rotate: 0deg;
    }
    100% {
        --rotate: 360deg;
    }
}

.card::before {
    content: "";
    width: 10%;
    height: 102.7%;
    border-radius: 8px;
    background-image: linear-gradient(
      var(--rotate),
      #5ddcff,
      #3c67e3 80%,
      #4e00c2  50%
      /* #5ddcff,
      #3c67e3 43%,
      #4e00c2 */
    );
    position: absolute;
    z-index: -1;
    top: -1.3%;
    left: -2%;
    animation: spin 2.5s linear infinite;
}

.card::after {
    position: absolute;
    content: "";
    top: calc(var(--card-height) / 6);
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.8);
    filter: blur(calc(var(--card-height) / 6));
    background-image: linear-gradient(
      var(--rotate),
      #5ddcff,
      #3c67e3 80%,
      #4e00c2 85%,

    );
    opacity: 1;
    transition: opacity 0.5s;
    animation: spin 2.5s linear infinite;
}

@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}

.card:hover:before,
.card:hover:after {
    animation: none;
    opacity: 0;
}



@media screen and (max-width: 767px) {
  

  /* *********fondo com imagen********* */
}

.card img::before{
  content: "";
  position: absolute;
  height: 200px;
  width: 250px;
  background-image: conic-gradient(rgb(151, 18, 107) 20deg, transparent 120deg);

}

@keyframes rotar{
  from{
      transform: rotate(0deg);
  }
  to{
      transform: rotate(-160deg);
  }
}

.card img::after{
    content: "";
    position: absolute;
    height: 120px;
    width: 120px;
    display: inline-block;
    align-items: center;
    
    padding: 5px;
    border-radius: 50%;
  
    z-index: -3;
  }
  


.card p  {
    text-align: left;
}

.card a {
  color: rgba(var(--color) / 60%);
  text-decoration: none;
}

.icons ion-icon {
    font-size: 2.5rem;
    margin: 5px;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        --rotate: 0deg;
    }
    100% {
        --rotate: 360deg;
    }
}

/* ****************web***************** */
/* ****************web***************** */
/* ****************web***************** */
/* ****************web***************** */
/* ****************web***************** */

.card::before {
    content: "";
    width: 101%;
    height: 101%;
    /* border-radius: 10px; */
    border-top-left-radius: 52px;
    border-top-right-radius: 52px;
    background-image: linear-gradient(
      var(--rotate),
      #5ddcff71 25%,
      #0c246d 90%,
      #774db4a2 
      /* #5ddcff,
      #3c67e3 43%,
      #4e00c2 */
    );
    position: absolute;
    z-index: -1;
    top: -0.5%;
    left: -0.5%;
 
    animation: spin 6.5s linear infinite;

}

.card::after {
    position: absolute;
    content: "";
    top: calc(var(--card-height) / 5);
    left: 0;
    right: 0;
    z-index: -1;
    height: 104%;
    width: 105%;
    margin: 0 auto;
    transform: scale(0.8);
    filter: blur(calc(var(--card-height) / 6));
    background-image: linear-gradient(
      var(--rotate),
      #5ddcff94 25%,
      #3c67e3 63%,
      #4e00c2
      /* #5ddcff,
      #3c67e3 43%,
      #4e00c2 */
    );

    opacity: 3;
    transition: opacity 0.9s;
    animation: spin 6.5s linear infinite;
    /* animation: spin 2.5s linear infinite; */

  }

    
/* FONDO EDITADO */
    
body {
    min-height: 100vh;
    /* background: rgba(var(--bg) / 90%); */
    background: linear-gradient(rgba(11, 5, 12, 0.753), rgba(4, 14, 15, 0.842)), url(./04-min.jpg),no-repeat;
    /* background: linear-gradient(rgba(49, 22, 26, 0.95), rgba(22, 2, 2, 0.74)), url(./04.jpg),no-repeat; */
    position: relative;
    width: 100%;
    padding: 120px 0 0 0;
  
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    font-family: Roboto;
}


.card2 a {
  color: sandybrown;
  text-decoration: none;
}


.card:hover:after {
    animation: none;
    opacity: 0;
}



@media screen and (max-width: 767px) {


  body {
    min-height: 100vh;
    /* background: rgba(var(--bg) / 90%); */
    background: linear-gradient(rgba(6, 12, 5, 0.479), rgba(4, 58, 65, 0.582)), url(./04.jpg),no-repeat;
    /* background: linear-gradient(rgba(49, 22, 26, 0.95), rgba(22, 2, 2, 0.74)), url(./04.jpg),no-repeat; */
    position: relative;
    width: 100%;
    padding: 120px 0 0 0;
  
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    font-family: Roboto;
} 
  
  
.card {
    background: #282e25;
    width: 96%;
    height: 50%;
    padding: 15px;
    position: relative;
    /* border-radius: 15px; */
    background: #252A2E;
    cursor: pointer;
    text-align: center;
    /* CAJA MODIFICAR */
    margin-top: 0px;
    /* margin-top: 18px; */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 8px 8px 10px #0000005d;
}

  }



@media screen and (max-width: 767px) {

/* CARD PRINCIPAL --WEB-- */
}

.card {
    background: rgba(var(--bg));
    width: 96%;
    height: 50%;
    padding: 5px;
    position: relative;
    /* border-radius: 15px; */
    color: rgba(var(--color) / 60%);
    cursor: pointer;
    text-align: center;
    /* CAJA MODIFICAR */
    margin-top: -5px;

    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 8px 8px 10px #0000005d;

}





    
.body {
        min-height: 100vh;

        background: linear-gradient(#07070756 10%, #07090ea9 95%); 
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 2rem;
        padding-bottom: 2rem;
        box-sizing: border-box;
        font-family: Roboto;
  
    .mainImg {
      width: 200px;
    }
    .cardname {
      text-align: center;
      color: #fff;
      font-weight: 500;
      font-size: 28px;
      padding: 10px;
      margin-left: -10px;
    }
    .carddesc {
      color: #808080;
      text-align: center;
      font-weight: 500;
      font-size: 15px;
      margin-top: 20px;
    }
    
  .btnContainer {
    display: flex;
    width: 100%;
    justify-content: space-evenly;

      }
  
  .btn {
    padding: 9px 15px;
    max-width: 128px;
    display: block;

    margin-right: 10px;
    /* border: 1px solid #090b14; */
    border: 1px solid #3051f3;
    background: none;
    outline: none;
    color: #f3f7ff;
    font-weight: 250;
    font-size: 16px;
    cursor: pointer;
    /* for cool effect */
    transition: 0.2s ease;
    border-radius: 18px;
    /* background: #060e58;   */
    background: #1321b9f6;
    background: #1321b9f6;
    box-shadow: 8px 8px 10px #0000005d;
    
  }
  
  .btn2 {
    padding: 9px 12px;
    max-width: 128px;
    display: block;
/
    margin-left: 25px;
    border: 1px solid #3051f3;
    background: none;
    outline: none;
    color: #f3f7ff;
    font-weight: 250;
    font-size: 16px;
    cursor: pointer;

    transition: 0.2s ease;
    border-radius: 18px;
    background: #1321b9f6;
  
  
  background-image: linear-gradient(90deg, rgba(10, 21, 83, 0.123), rgba(8, 7, 92, 0.219), rgba(17, 17, 12, 0.664), rgba(255, 15, 15, 0.233));
  background-size: 290%;
  box-shadow: 8px 8px 10px #0000005d;
  
  }
  .btn{
    animation: animate 3.1s infinite;
  }
  
  
  .btn2{
    animation: animate 3.1s infinite;
  }
  
  .btn:hover {
    background: #131463;
    color: #fff;
  }

  .carddesc {
    color: #f4fafccb;

    text-align: center;
    font-weight: 500;
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 10px;

  
  }
  
  
  .carddesT{
    color: #808080;
    /* color: #f4fafccb; */
    text-align: center;
    /* font-weight: 500; */
    font-size: 90px;
    /* font-size: 17px; */
    font-size: larger;
    font-size: small;
    /* font-size: medium; */
    margin-top: -25px;
    /* margin-left: -10px; */
  
  }
    

}

.imgBox::before{
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  background-image: conic-gradient(rgb(151, 18, 107) 20deg, transparent 120deg);
  /* background-image: conic-gradient(rgb(3, 17, 31) 20deg, transparent 120deg); */

  /* background-image: conic-gradient(red 20deg, transparent 120deg); */
  animation: rotar 2.6s linear infinite;
}

@keyframes rotar{
  from{
      transform: rotate(0deg);
  }
  to{
      transform: rotate(-360deg);
  }
}

.imgBox::after{
  content: "";
  position: absolute;
  height: 189px;
  width: 189px;
  display: inline-block;
  /* background: url(./logo\ .png) no-repeat center -10px, 60px, 10px; */
  align-items: center;
  
  padding: 5px;
  border-radius: 50%;


  /* box-shadow: inset -200px 200px 280px #0000008c;; */

  z-index: 3;
}


.imgBox img {
  content: "";
  z-index: -3;
height: 182px; 
width: 180px;
border-radius: 50%;
position: relative;
padding: 0px;

/* align-items: center; */
color: rgb(155, 102, 38);
z-index: 3;

}

/* **************mobil********** */


@media screen and (max-width: 767px) {

  .card {
    background: rgba(var(--bg));
    width: 96%;
    height: 50%;
    padding: 5px;
    position: relative;
    /* border-radius: 15px; */
    color: rgba(var(--color) / 60%);
    cursor: pointer;
    text-align: center;
    /* CAJA MODIFICAR */
    /* margin-top: 50px; */
    margin-top: 150px;
    /* margin-top: 18px; */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 8px 8px 10px #0000005d;

}

  
  .card::before {
    content: "";
    width: 102%;
    height: 100.2%;
    border-top-left-radius: 52px;
    border-top-right-radius: 52px;
    background-image: linear-gradient(
      var(--rotate),
      #82e7e71a 25%,
      #8d91a0 90%,
      #b29bd33d 
      /* #5ddcff71 25%,
      #0c246d 90%,
      #774db4a2  */

    );
    position: absolute;
    z-index: -1;
    top: -0.11%;
    left: -1.01%;
 
    animation: spin 6.5s linear infinite;
}
.card::after {
    position: absolute;
    content: "";
    top: calc(var(--card-height) / 5);
    left: 0;
    right: 0;
    z-index: -1;
    height: 104%;
    width: 105%;
    margin: 0 auto;
    transform: scale(0.8);
    filter: blur(calc(var(--card-height) / 6));
    background-image: linear-gradient(
      var(--rotate),

    );
    opacity: 3;
    transition: opacity 0.9s;
    animation: spin 6.5s linear infinite;
    animation: none;
}



}

