* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, lightgray 0%, #5e5c5c 50%, lightgray 100%);

}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #5e5c5c 0%, black 50%, #5e5c5c 100%),
                radial-gradient(circle at 70% 70%, #fff, #fff 70%, transparent 70%),
                radial-gradient(circle at 30% 30%, #fff, #fff 70%, transparent 70%);
    background-size: 200% 200%, 20% 20%, 20% 20%;
    background-position: 0% 0%, 85% 85%, 15% 15%;
    animation: move 5s linear infinite;
  }

.hero{
    padding-top: 50px;
    align-items: center;
    background-image: url(https://res.cloudinary.com/dgzfknw2l/image/upload/v1736612532/4_ssa5ml.webp);
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    height: 70vh;
    width: 80vp;
    margin: auto;
    justify-content: center;

}
p{
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    color: white;
    text-shadow: black 3px 3px 3px;
}
h1{
    font-size: 50px;
    text-align: center;
    text-shadow: black 3px 3px 3px;
}
.nav-item{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.description{
    padding: 20px;
    text-align: center;
    color: black;
    font-size: medium;
    text-shadow: lightgray 2px 2px 2px;
}

h4{
    font-weight: bold;
    text-align: center;
    color: rgb(103, 103, 103)!important;
    font-size: 20px;
    text-shadow: rgb(169, 169, 169) 2px 2px 2px;
}

.contenedor-form {
    background: linear-gradient(135deg, #5e5c5c 0%, black 50%, #5e5c5c 100%),
                radial-gradient(circle at 70% 70%, #fff, #fff 70%, transparent 70%),
                radial-gradient(circle at 30% 30%, #fff, #fff 70%, transparent 70%);
    background-size: 200% 200%, 20% 20%, 20% 20%;
    background-position: 0% 0%, 85% 85%, 15% 15%;
    animation: move 5s linear infinite;
    text-align: center;
    padding: 25px 0 15px;
    min-width: 320px;
  }

  .mapcofic-contacto-form .form-control {
    margin-bottom: 14px;
    font-weight: 300;
    font-size: 16px;
    
  }
  
  .form-control {
    width: 85vw;
    margin-left: auto;
    margin-right: auto;
}
  .form-texto {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
}

.footer1 {
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, black 0%, #5e5c5c 50%,black 100%),
                radial-gradient(circle at 70% 70%, #fff, #fff 70%, transparent 70%),
                radial-gradient(circle at 30% 30%, #fff, #fff 70%, transparent 70%);
    background-size: 200% 200%, 20% 20%, 20% 20%;
    background-position: 0% 0%, 85% 85%, 15% 15%;
    animation: move 5s linear infinite;
  }


@keyframes move {
    0% { background-position: 0% 0%, 85% 85%, 15% 15%; }
    50% { background-position: 100% 100%, 15% 15%, 85% 85%; }
    100% { background-position: 0% 0%, 85% 85%, 15% 15%; }
  }