/* 320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV */

/* animaciones------------------- */
@keyframes animacionMenuCerrar {
  0% {
    transform: translateX(00px);
  }
  100% {
    transform: translateX(-300px);
  }
}
@keyframes animacionMenuAbrir {
  0% {
    transform: translateX(-300px);
  }
  100% {
    transform: translateX(00px);
  }
}

@keyframes animacionEntrada {
  0% {
    transform: translatey(100px);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: translatey(0);
    opacity: 1;
  }
}
@keyframes animacionEntrada2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

:root {
  --colorPri: #cccccc;
  --colorSec: #4d8ee2;
  --colorTer: rgb(14, 13, 13);
  --colorText: #626d72;
  --colorTop: #d1dee4;

  --fuenteZen: "Zen Kaku Gothic Antique", sans-serif;
  --fuenteRoboto: "Roboto", sans-serif;
  --fuenteFredoka: "Fredoka One", cursive;
  --fuenteRalewey: "Raleway", sans-serif;
  --funeteAnton: "Anton", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0%;
}
header {
  display: flex;
  position: fixed;
  width: 100%;
  background-color: #d1dee4;
  z-index: 100;
}
header .logo {
  display: flex;
  width: 60%;
  align-items: center;
  padding-left: 40px;
  background-color: #d1dee4;
}
header .logo img {
  width: 50px;
  height: fit-content;
}
header .logo h6 {
  margin: 10px;
  font-size: 0.8rem;
  height: fit-content;
  font-family: var(--fuenteRoboto);
  font-weight: 700;
  color: var(--colorPri);
}
header nav {
  width: 40%;
  height: inherit;
}
header nav button {
  display: block;
  width: fit-content;
  height: 55px;
  padding: 0;
  margin: 1rem 1rem 1rem auto;
  background-color: var(--colorSec);
  background-color: transparent;
  border: none;
}
header nav button span {
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--colorSec);
  margin: 4px;
  transition: 0.5s ease;
}

header nav ul {
  z-index: 50;
  list-style: none;
  left: 0;
  right: 0%;
  height: 100vh;
  position: absolute;
  padding: 1.5rem;
  background-color: #d1dee4;
  border-right: 3px solid var(--colorSec);
  transform: translateX(-300px);
  display: none;
  transition: 1s ease;
}

header nav ul a {
  text-decoration: none;
  display: block;
  color: var(--colorSec);
  font-family: var(--fuenteRalewey);
  font-weight: 900;
  margin: 2rem 1rem;
}
main {
  padding: 4.5rem 0;
}
.section1 {
  margin: 0;
  display: flex;
  flex-direction: column;
}
/* .section1 img {
  width: 100%;
} */
.gatico {
  background-image: url(txakur.imgs/perro3.jpg);
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  min-height: 400px;
  padding: 2rem;
  position: relative;
}

.section1 .gatico .blurTexto {
  background-color: #d1dee4;
  padding: 50px;
  position: absolute;
  top: 4rem;
  left: -10px;
}
.section1 .gatico h4 {
  padding: 0rem 2rem 0rem 0rem;
  transform: translateY(10px);
  font-family: var(--fuenteRoboto);
  font-size: 0.8rem;
  color: rgb(42, 42, 43);
  font-weight: 500;
  margin-left: 0.25rem;
  text-align: left;
  /* background-color: violet; */
}
.section1 .gatico h1 {
  /* background-color: wheat; */
  font-family: var(--funeteAnton);
  font-size: 3rem;
  font-weight: 900;
  color: var(--colorSec);
}
.section1 .texto {
  margin: 0;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}
.section1 .texto h2 {
  padding-left: 0.5rem;
  font-family: var(--fuenteRoboto);
  color: #196588;
  border-left: 5px solid #196588;
  margin-bottom: 1.5rem;
}
.section1 .texto p {
  font-size: 1rem;
  color: var(--colorSec);
  color: #626d72;
  font-family: var(--fuenteRalewey);
  font-weight: 500;
  max-width: 75ch;
}
.section1 .texto p span {
  color: rgb(0, 0, 0);
  font-weight: 900;
}
.blog .articulosBlog {
  padding: 2rem 4rem;
  margin: 0 0 2rem 0;
  position: relative;
}
.blog .articulosBlog h2 {
  padding-left: 0.5rem;
  font-family: var(--fuenteRoboto);
  color: #196588;
  border-left: 5px solid #196588;
  margin-bottom: 1.5rem;
}
.blog .articulosBlog p {
  font-size: 1rem;
  color: var(--colorSec);
  color: #626d72;
  font-family: var(--fuenteRalewey);
  font-weight: 500;
  transition: 1s;
}

/* .blog .articulosBlog p:hover {
  animation: descripcionBlog 1s ease-in;
} */
.blog .articulosBlog button {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: none;
  background-color: var(--colorSec);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 5%;
  bottom: 15%;
}
.blog .articulosBlog button:hover {
  cursor: pointer;
}
.blog .articulosBlog button img {
  width: 15px;
  margin: auto auto;
}
/* .blog .articulosBlog button img:hover {
  transform: rotateX(180deg);
} */
.blog #articulos {
  display: none;
  padding: 2rem 4rem;
}
.blog article {
  margin-bottom: 6rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}
.blog article h2 {
  padding-left: 0.5rem;
  font-family: var(--fuenteRoboto);
  color: #196588;
  border-left: 5px solid #196588;
  margin-bottom: 1.5rem;
}
.blog article h3 {
  padding: 0rem 2rem 2rem 0rem;
  font-family: var(--fuenteRoboto);
  font-size: 0.8rem;
  color: var(--colorSec);
  font-weight: 500;
}
.blog article p {
  font-size: 1rem;
  color: var(--colorSec);
  color: #404446;
  font-family: var(--fuenteRalewey);
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
}
.blog article p #more1,
.blog article p #more2,
.blog article p #more3 {
  display: none;
}
.blog article #readMore1,
.blog article #readMore2,
.blog article #readMore3 {
  padding: 0.75rem 1rem;
  font-family: var(--fuenteRoboto);
  font-weight: 500;
  border-radius: 10px;
  border: none;
  margin: 1rem 0;
  width: fit-content;
  background-color: var(--colorSec);
  color: rgb(236, 234, 234);
}

footer {
  background-color: var(--colorSec);
  min-height: 200px;
}
footer .donde {
  padding: 2rem;
}
footer .cuando {
  padding: 2rem;
}
footer .cuando p {
  margin-top: 2rem;
  color: var(--colorPri);
  font-family: var(--fuenteRalewey);
}
footer .cuando ul,
footer .donde ul {
  list-style: none;
}
footer .cuando h1,
.donde h1 {
  color: white;
  font-family: var(--fuenteRoboto);
  font-weight: 700;
  margin-bottom: 1rem;
}
footer .cuando ul li,
footer .donde ul li {
  color: var(--colorPri);
  font-family: var(--fuenteRalewey);
}
footer .donde iframe {
  max-width: 100%;
  max-height: 300px;
  box-shadow: 5px 5px 5px 0 rgb(49, 59, 102);
  border-radius: 10px;
  margin: 1rem 0;
}
footer .redes {
  padding: 1rem 0;
}
footer .redes a {
  width: 100px;
  color: var(--colorPri);
}
footer .redes a img {
  width: 50px;
  display: block;
}

@media (min-width: 700px) {
  header {
    background-color: #d1dee4;
  }
  header nav {
    width: 60%;
    height: 5rem;
  }
  header nav button {
    display: none;
  }

  header nav #enlaces {
    display: flex;
    transform: translateX(300px);
    z-index: 50;
    background-color: transparent;
    height: initial;
    position: initial;
    transform: none;
    padding: 0 1.5rem;
    border: none;
  }

  header nav ul a {
    text-align: center;
  }
  header nav ul li:nth-of-type(1) {
    display: block;
    margin: 0 0 0 auto;
  }
  .section1 .texto {
    max-width: 100%;
    padding: 4rem;
  }
  main .section1 .gatico {
    background-position: 50% 100%;
  }
  .section1 .gatico .blurTexto {
    top: 0;
  }
  .section1 .gatico h4 {
    font-size: 0.8rem;
  }
  .section1 .gatico h1 {
    font-size: 3.5rem;
  }
  footer {
    padding: 4rem;
  }
}
@media (min-width: 800px) {
  .section1 .gatico {
    height: 100vh;
    background-position: center;
  }
  .section1 .texto {
    padding: 4rem 10rem;
  }
  .section1 .texto h2 {
    font-size: 2rem;
  }
  .section1 .texto p:nth-of-type(1) {
    margin-top: 1rem;
  }
  /* blog----------------------------------- */
  .blog .articulosBlog {
    margin: 2rem 0;
    padding: 2rem 10rem;
  }
  .blog .articulosBlog h2 {
    font-size: 2rem;
  }
  .blog .articulosBlog p {
    margin: 0;
  }

  .blog .articulos article {
    margin-left: 3rem;
    padding: 0 4rem;
  }

  .blog article #readMore {
    padding: 0.75rem 1rem;
    font-family: var(--fuenteRoboto);
    font-weight: 500;
    border-radius: 10px;
    margin: 1rem 0;
    width: fit-content;
    background-color: var(--colorSec);
    color: rgb(236, 234, 234);
  }

  footer {
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1025px) {
  main .section1 .gatico {
    background-image: url(txakur.imgs/perro3.jpg);
    background-position: 100% 5%;
  }
  .section1 .gatico .blurTexto {
    left: initial;
    top: 0rem;
    left: 0;
  }
  .section1 .gatico .blurTexto h1 {
    font-family: var(--funeteAnton);

    font-size: 6.5rem;
    animation: animacionEntrada 1s ease-in-out;
  }

  .section1 .gatico .blurTexto h4 {
    animation: animacionEntrada2 1s ease-in;
    margin: 0;
    padding: 0;
  }

  .section1 .texto {
    padding: 4rem 10rem;
  }
  .section1 .texto h2 {
    font-size: 2rem;
  }
  .section1 .texto p:nth-of-type(1) {
    margin-top: 1rem;
  }
  /* blog----------------------------------- */
  .blog .articulosBlog {
    margin: 2rem 0;
    padding: 2rem 10rem;
  }
  .blog .articulosBlog h2 {
    font-size: 2rem;
  }
  .blog .articulosBlog p {
    margin: 0;
    max-width: 75ch;
  }
  .blog .articulosBlog button {
    bottom: 25%;
    right: 10%;
  }
  .blog .articulos {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .blog .articulos article {
    margin-left: 0rem;

    padding: 0 2rem;
  }
  .blog .articulos article p {
    max-width: 85ch;
    padding: 1rem;
    border-left: 3px solid grey;
  }

  .blog article #readMore {
    border: none;
    padding: 0.75rem 1rem;
    font-family: var(--fuenteRoboto);
    font-weight: 500;
    border-radius: 10px;
    margin: 1rem 0;
    width: fit-content;
    background-color: var(--colorSec);
    color: rgb(236, 234, 234);
  }

  footer {
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  main .gatico {
    height: 100vh;
  }
  .gatico .blurTexto {
    width: 50%;
  }
}
