

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
    font-family: 'Monserrat', sans-serif;
}

/*---GLOBALES---*/

h1{
    font-size: 5rem;
    font-family: 'Monserrat', sans-serif;
    font-weight: 700;
}

h2{
    font-family: 'Monserrat', sans-serif;
    color: #BF00FF;
}

h3{
  color: #BF00FF;
}

h4{
  color: #BF00FF;
}

@media screen and (max-width: 480px){
    h1{
        font-size: 2.5rem;
    }
    h5{
        font-size: 1.8rem;
    }
      
}

/*--- NAVEGADOR---*/
.banner-image{
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/banner-image.jpg);
    background-repeat: no-repeat;
    background-position:center center;
    background-size: cover;
    background-attachment: fixed;
}

.navbar{
    background: transparent !important;
}

.nav-item{
    font-weight: bold;
}

.navbar-brand{
    margin-right: 0;
}

.btn-wsp{
  animation: animacion 2s linear infinite;
}

@keyframes animacion{
  0%{
    box-shadow: 0 0 0 0 rgba(4, 145, 34, 0.6), 0 0 0 0 rgba(4, 145, 34, 0.6);
  }

  30%{
    box-shadow: 0 0 0 50px rgba(4, 145, 34, 0), 0 0 0 0 rgba(4, 145, 34, 0.6);
  }

  65%{
    box-shadow: 0 0 0 50px rgba(4, 145, 34, 0), 0 0 0 30px rgba(4, 145, 34, 0);
  }

  100%{
    box-shadow: 0 0 0 0 rgba(4, 145, 34, 0), 0 0 0 30px rgba(4, 145, 34, 0);
  }
  
}

.btn-wsp:hover{
    background-color: #000;
    color: #fff !important;
    border: none;
}

/*---ACERCA DE MÍ---*/
.clau{
    border: 5px solid #BF00FF;
}

/*---SERVICIOS---*/
.habilidades{
     animation-name: animar;
     animation-duration: 7s;
     animation-timing-function: ease-out;
     animation-delay: 10;
     animation-iteration-count: infinite;
     animation-fill-mode: none;
     animation-play-state: running;
    
}

@keyframes animar{
  0%{
    transform: scale(.5);  
  }
  
}
.bi{
   color: #BF00FF; 
}

/*--PORTAFOLIO----*/
.main-portfolio{
    background-color: rgb(206, 200, 206);
}

.card:hover {
    transform: scale(1.15);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
  }
  .card {
  
    transition: 0.5s ease;
    cursor: pointer;
    margin:30px;
  }

  /*---FORMULARIO CONTACTO---*/

  .contact{
      width: 100%;
      min-height: 40rem;
      background-image: url(../img/fondo-form.jpg);
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
  }

  .head{
      background-color:rgba(189, 19, 185);
      border-radius: .5rem;
      margin-top: -40px;
      margin-bottom: 2rem;
      -webkit-box-shadow: 1px 9px 27px -8px rgba(168,9,168,1);
      -moz-box-shadow: 1px 9px 27px -8px rgba(168,9,168,1);
      box-shadow: 1px 9px 27px -8px rgba(168,9,168,1);
  }

 
  .card-form{
      background-color: white;
      height: 45rem;
  }
  .col-form{
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  
  .contact-form {
    list-style-type: none;
  }
  
  .contact-form li div input{
    margin-bottom: 2.5em;
    
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    margin: 0;
    background: transparent !important;
    padding-bottom: 1.4em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 3px solid slategrey;
    font-family: 'Roboto', sans-serif;
    color: lightgrey;
    font-weight: 700;
    font-size: 18px;
    transition: ease-in-out 0.40s;
  }
  
  .contact-form textarea {
    min-height: 50px;
    max-height: 500px;
    white-space: pre-wrap;
    word-wrap: break-word;
    resize: vertical;
    overflow: hidden;
  }
  
  .contact-form ::-webkit-input-placeholder {
    font-size: 12px;
    color: rgb(144, 112, 134);
    text-transform: uppercase;
    font-weight: 400;
  }
  
  .contact-form label {
    font-size: 12px;
    color: rgb(144, 112, 134);
    text-transform: uppercase;
    font-weight: 400;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus,
  .contact-form button:focus {
    outline: none;
    resize: none;
    border-bottom: 3px solid rgba(189, 19, 185);
  }
  
  .contact-form button {
    color: rgb(134, 133, 133);
    background: rgba(34, 34, 34, 0.0);
    border: 3px solid rgba(189, 19, 185);
    height: 74px;
    width: 200px;
    float: right;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: ease-in-out 0.25s;
    margin-top: 2rem;
  }
  
  .contact-form button {
    transition: ease-in-out 0.25s;
    
  }
  
  .contact-form button:hover {
    background: rgba(189, 19, 185);
    color: lightgrey;
  }
  
  .contact-form button:hover span {
    padding-left: 10px;
    color: white;
  } 
  
  .margen-redes{
    margin-right: 2rem;
  }
  
  .tel{
    width: 20rem;
    padding: 2rem 0 2rem 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform:lowercase;
  }
  
  .correo{
    width: 20rem;
    padding: 2rem 0 2rem 0;
    font-size: 1.2rem;
    text-transform:lowercase;
    color: white;
  }
  .correo:hover{
    color: blue;
  }

  /*---Página de confirmación de envió de formulario---*/
  .cont-envio{
    background-color: rgba(189, 19, 185);
  }

  .btn-1{
    background-color: rgb(247, 176, 225);
    color: #BF00FF;
    font-weight: 700;
  }

  .btn-1:hover{
    background-color: #BF00FF;
    color: #fff;
  }

  /*--FOOTER----*/
  .heading-footer{
    color:  rgb(189, 19, 185) !important;
  }

 .bi-form{
   color: #fff;
 }

 /*---PÁGINA TARJETAS---*/
 .banner-tarjetas{
  width: 100%;
  max-height: 30rem;
  background-image: url(../img/fondo-tarjetas.jpg);
  background-repeat: no-repeat;
  background-position:center center;
  background-size: cover;
  background-attachment: fixed;
 }

.border-tarj{
 border: 5px solid rgb(189, 19, 185);
}

@media screen and (max-width: 500px){
  .tarjetas img{
    width: 14.3rem;
  }
  .tarjetas-verticales img{
    width: 75%;
  }
}

hr{
  background-color: #6b083f ;
  padding: .15rem 0;
  margin: auto;
  width: 75%;
}

/*---CDS---*/
@media screen and (max-width: 500px){
  .precios{
    width: 70%;
    display: flex;
    justify-content: center;
  }

  .carrusel{
    width: 100%;
  }
}

/*---PÁGINA FLYER---*/

.fondo-flyer{
  width: 100%;
  min-height: 30rem;
  background-image: url(../img/flyer/fondo-flyer.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 500px){
  .tarjetas{
    width: 70%;
  }

  .ancho-row{
    width:95%;
  }

  .img-logo{
    width: 15rem;
  }
}







