* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: Gothic;
  src: URL(../font/GOTHICB.TTF);
}
:root {
  scroll-behavior: smooth;
}
main {
  width: 100%;
  height: 100%;
}
/* Header - Nav */
header {
  background-size: cover;
  background-attachment: fixed;
  position: fixed;
  width: 100%;
  height: 60px;
  background: #6a041a;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 10;
  text-align: center;
}
.contenedor {
  width: 100%;
  margin: auto;
}
#nav-bar {
  display: none;
}
header label {
  font-size: 30px;
  margin: 10px 0;
  cursor: pointer;
}
h1 {
  float: left;
  margin-top: 5px;
  font-size: 40px;
  font-family: Gothic;
}
header .contenedor {
  display: block;
}
/* Nav - Menu Hamburguesa */
.menu {
  position: absolute;
  width: 100%;
  height: 48vh;
  background: #530415;
  top: 60px;
  left: 0;
  transition: all 0.5s;
  transform: translateX(100%);
  opacity: 0.9;
}
#nav-bar:checked ~ .menu {
  transform: translateX(0%);
}
.lista-menu li {
  display: inline;
  padding-left: 3px;
  padding-right: 18px;
  padding-top: 10px;
}
.lista-menu li a {
  display: flex;
  color: #fff;
  height: 50px;
  margin-right: 15px;
  text-decoration: none;
  padding-top: 0px;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid rgb(255, 255, 255);
  font-size: 18px;
  font-family: Gothic;
  margin-left: 20px;
  animation-duration: 5s;
}
.lista-menu li a:hover {
  background: rgba(0, 0, 0, 0.493);
  height: 80%;
  box-shadow: rgb(212, 32, 32) 4px 5px;
}
section {
  width: 100%;
  margin-bottom: 100px;
}
/* Banner de inicio */
.banner {
  position: relative;
  width: 100vw;
  box-shadow: 6px 10px 20px rgb(163, 23, 23);
}
.banner img {
  width: 100%;
  height: 47vw;
  background-repeat: no-repeat;
}
.banner .contenedor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-60%) translateY(-50%);
  color: #fff;
}
.banner h2 {
  margin-left: 100px;
  font-family: Verdana;
  color: #631223;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: left;
  font-size: 25px;
  font-size: 90px;
}
.banner p {
  margin-left: 50px;
  font-family: Gothic;
  display: flex;
  justify-content: left;
  font-size: 25px;
  color: #31010c;
  font-weight: bold;
  font-size: 30px;
}
.banner a {
  margin-left: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-top: 20px;
  border: 3px solid #3d020f;
  font-size: 18px;
  border-radius: 60px;
  font-family: Gothic;
}
.banner a:hover {
  color: #fff;
  border-color: whitesmoke;
  background: #3d020f;
}
/* Seccion Video */
.video{
  background-color: #fc7f82;
  width: 100vw;
  height: 120%;
}
.video-patitas{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-repeat: infinite;
  border: 7px solid;
  border-color: #fff;
}

/* Seccion Bienvenidos  */
#bienvenidos {
  text-align: center;
  height: 100%;
}
#bienvenidos h2 {
  font-family: Verdana;
  font-size: 42px;
  color: #8a1f36;
}
#bienvenidos p {
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
  font-size: 18px;
  margin-left: 300px;
  margin-right: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  text-transform: capitalize;
}

#bienvenidos img {
  margin-top: 35px;
  width: 35%;
}
.contenedor_grande {
  padding: 50px;
}
/* Nuestros Servicios */

.servicios {
  background-color: #c0bdbd86;
  padding-bottom: 55px;
  padding-top: 55px;

}
.titulo_servicios {
  font-family: Verdana;
  font-size: 42px;
  color: #8a1f36;
  display: flex;
  justify-content: center;
}

.imagen h3 {
  font-family: Gothic;
  font-size: 26px;
  color: #771818;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 10px;
}
.imagen p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 15px;
  font-size: 17px;
  font-family: "Poppins";
}
.galeria {
  display: flex;
  justify-content: space-evenly;
}
.imagen {
  width: 32%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-left: 55px;
}
.imagen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hover-imagen{
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    margin-top: 102px;
    transform: scale(0);
    background: rgba(145, 20, 20, 0.623);
    transition: transform .6s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hover-imagen img{
  width: 50px;
}
.hover-imagen p{
  color : #fff;
  font-family: 'Poppins'
}
.imagen:hover .hover-imagen{
  transform: scale(1);
}

@media screen and (max-width: 1000px) {
  .galeria {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
}
.imagen {
  width: 34%;
  overflow: hidden;
  position: relative;
  margin-left: 55px;
}
.imagen > img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
}
/* Nosotros */
.contenedor_grande_2 {
  background: #fff;
  padding-bottom: 100px;
}
#info {
  justify-content:center;
  align-items: center;
  text-align: center;
}
#info .contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

}
#info h2 {
  margin-bottom: 20px;
  font-family: Verdana;
  font-size: 42px;
  color: #8a1f36;
}
#info h4{
  color: #ff4f75;
  margin-left: 25px;
  font-size: 18px;
  font-family: Gothic;


}

.info-pet img {
  align-items: center;
  justify-content:space-evenly;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  margin-top: 40px;
  margin-bottom: 10px;
  border: 5px solid rgb(255, 67, 67);
}

@media screen and (max-width: 1000px) {
  .lista-menu li a {
    margin-left: 600px;
  }
  .lista-menu li {
    display: inline;
    padding-left: 3px;
    padding-right: 18px;
    padding-top: 10px;
  }
  .lista-menu li a {
    display: flex;
    color: #fff;
    height: 40px;
    width: 90%;
    margin-right: 15px;
    text-decoration: none;
    padding-top: 0px;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid rgb(255, 255, 255);
    font-size: 18px;
    font-family: Gothic;
    margin-left: 30px;
    animation-duration: 5s;
  }
  .lista-menu li a:hover {
    background: rgba(0, 0, 0, 0.493);
    box-shadow: rgb(212, 32, 32) 5px 6px;
  }
}
@media (min-width: 1000px) {
  .menu {
    position: static;
    width: auto;
    height: auto;
    transform: translateX(0%);
    float: right;
    display: flex;
  }

  header label {
    display: none;
  }

  .lista-menu {
    display: flex;
    flex-wrap: wrap;
  }
  .contenedor {
    width: 1000px;
  }
  #banner img {
    margin-top: -450px !important;
  }
}
@media screen and (max-width: 1000px) {
  .banner h2 {
    font-size: 60px;
    margin-left: 220px;
  }
  .banner p {
    font-size: 24px;
    margin-left: 150px;
  }

  .banner a {
    margin-left: 220px;
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  #banner {
    height: 300px;
    overflow: hidden;
  }
  #banner img {
    height: auto;
    margin-top: -100px;
  }
}
@media screen and (max-width: 1200px) {
  #bienvenidos p {
    margin-top: 30px;
    font-size: 18px;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    text-transform: capitalize;
  }

  #bienvenidos img {
    margin-top: 35px;
    width: 60%;
  }
}

/* footer */

footer {
  background: linear-gradient(
    180deg,
    #3d020f 0%,
    rgb(128, 16, 16) 51%,
    rgb(122, 7, 7) 100%
  );
  padding: 60px 0 30px 0;
  margin: auto;
  overflow: hidden;
}

.contenedor-footer {
  display: flex;
  width: 90%;
  justify-content: space-evenly;
  margin: auto;
  padding-bottom: 50px;
  border-bottom: 2px solid rgb(165, 164, 164);
}

.content-foo {
  text-align: center;
}

.content-foo h4 {
  color: #fff;
  border-bottom: 4px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-family: Gothic;
  font-size: 20px;
}

.content-foo p {
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.titulo-final {
  text-align: center;
  font-size: 28px;
  margin: 20px 0 0 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 600px) {
  nav {
    text-align: center;
    padding: 30px 0 0 0;
  }

  nav > a {
    margin-right: 5px;
  }

  .textos-header h1 {
    font-size: 35px;
  }

  .textos-header h2 {
    font-size: 20px;
  }
}
