/* estilos generales */
html {
  background: no-repeat center url("recursos/Logo_coronaradiada_tallo_v1.png");
  background-size: 1300px;
  background-attachment: fixed;
  font-size: 62.5%;
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Sintony, sans-serif;
  text-align: justify;
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  /*  para que footer quede siempre abajo */
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 1300px;
  margin: auto;
  line-height: 1.6;
}
a {
  color: black;
  text-decoration: none;
}
li {
  list-style: none;
}
h1 {
  color: #409dbc;
  margin-bottom: 5px;
  font-weight: bold;
  margin-top: 20px;
  text-align: left;
}
h3 {
  font-size: 2em;
}
h4 {
  color: #409dbc;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 1.6em;
  margin-top: 20px;
  text-align: left;
}
h5 {
  color: #409dbc;
}
img {
  margin: 5px 5px;
  max-width: 100%;
}
.imghover {
  transition-property: all;
  transition-duration: 0.3s;
}
.imghover:hover {
  box-shadow: 0px 0px 15px -3px hsla(7, 84%, 71%, 0.9);
  transition-property: all;
  transition-duration: 0.3s;
}
p {
  margin-bottom: em;
}
.bpurple {
  font-weight: bolder;
  color: hwb(281 0% 50%);
}
/* estilo hover general link textos*/
.hover {
  transition-property: all;
  transition-duration: 0.3s;
}
.hover:hover {
  color: hsl(29, 96%, 79%);
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}
.menu-blur {
  box-shadow: 0px 0px 15px -3px hsla(7, 84%, 71%, 0.3), inset 0px 0px 15px -3px hsla(7, 84%, 71%, 0.3);
  backdrop-filter: blur(25px);
  background-color: hsla(0, 0%, 100%, 0.25);
}
/* estilo botones general */
.btm {
  cursor: pointer;
  display: inline-block;
  border-radius: 7px;
  font-weight: bold;
  padding: 5px 3px;
  font-size: 1.2em;
  color: white;
  border: 1px solid #409dbc;
  background-color: #409dbc;
  box-shadow: 0px 0px 3px 0px rgba(19, 76, 95, 0.4);
}
.btm:hover {
  border: 1px solid hsl(195, 75%, 50%);
  background-color: hsl(195, 75%, 50%);
  box-shadow: 0px 0px 3px 0px rgba(19, 76, 95, 0.8);
}
/* estilo citas */
.frase-cita {
  margin: 20px 10%;
  font-style: italic;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}
.frase-cita-autor {
  display: block;
  margin: 5px 0px;
}
/* ************** cabecera y navegacion ************** */
header {
  width: 100%;
  position: -webkit-sticky; /* For Safari */
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1;
  min-width: 400px;
  background-color: hsla(0, 0%, 100%, 0.9);
}
.nav-menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: hsl(0, 0%, 100%);
  padding: 15px 20px;
  opacity: 0;
  animation: apareceIzq;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.nav-menu ul {
  flex-basis: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: apareceIzq;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.nav-menu ul li {
  padding: 0px 30px;
  transition-property: all;
  transition-duration: 0.9s;
}
.nav-menu ul li a {
  color: hsl(7, 100%, 60%);
  font-weight: bold;
  font-size: 1.8em;
  text-transform: capitalize;
}
.nav-brand {
  height: 50px;
  transition-property: all;
  transition-duration: 0.9s;
}
ul.nav-menu-right li a img {
  width: 30px;
}
/* menu responsive input */
.toggle-menu {
  display: none;
  transform: translateY(-60px);
  height: 20px;
  margin: 5px 5px;
  h1 {
    margin: auto;
    font-style: oblique;
    text-transform: capitalize;
  }
}
.nav-trigger {
  display: none;
}
.nav-menu-trigger {
  cursor: pointer;
}
.nav-trigger:checked + .nav-menu {
  transform: translateY(200px);
  display: flex;
}
/* ************** contenido main ************* */
main {
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  margin-top: 70px;
  transition-property: all;
  transition-duration: 0.9s;
}
main p {
  font-size: 1.8em;
  margin: 10px 0px;
}
.contenedor-tarjetas {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  opacity: 0;
  animation-name: apareceDrc;
  animation-duration: 1.2s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.tarjetas {
  box-shadow: 0px 15px 20px -10px hsla(7, 84%, 71%, 0.129);
  border-radius: 70px;
  padding: 10px 10px 20px 10px;
  margin: 10px;
  backdrop-filter: blur(25px);
  min-width: 400px;
  max-width: 800px;
}
.tarjetas p {
  margin: 10px;
}
.tarjetas img {
  box-shadow: 0px 0px 7px -2px hsl(0, 0%, 0%, 0.9);
  max-width: 90%;
  border-radius: 5%;
}
.fldex-columnas {
  display: flex;
  flex-direction: column;
}
.contenedor-imagenes {
  display: flex;
  justify-content: space-around;
}
.contenedor-imagenes-protocolo {
  max-width: 80%;
}
/* pagina Terapia */
.frase-inicial {
  font: italic bold 1.4em Georgia, "Times New Roman", Times, serif;
  color: hsl(0, 0%, 100%);
  text-align: center;
  text-shadow: 0px 0px 3px hsl(0, 0%, 0%);
  background: url(../contenidoWebTerapia/hojas1.jpg) center no-repeat;
  background-blend-mode: normal;
  background-size: cover;
  border-radius: 40px;
  padding: 5px 10px;
  min-width: 300px;
  opacity: 0;
  animation: apareceUp;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  box-shadow: 0px 0px 44px 1px rgb(255, 255, 255) inset;
}
/* pagina contacto */
.contacto {
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 50px;
  div {
    justify-items: center;
    text-align: center;
  }
  + p {
    font-size: 1.2em;
  }
}
.tarjetas-formulario {
  box-shadow: 0px 5px 5px 0px rgba(19, 76, 95, 0.4);
}
.formulario {
  text-align: center;
  max-width: 400px;
  margin: auto;
}
.formulario p {
  font: italic bold 1.5em Helvetica, Arial, sans-serif;
  color: #1f6f74;
}
.formulario > div {
  padding-bottom: 15px;
}
.formulario input,
textarea {
  border: none;
  box-shadow: 0px 0px 2px -1px black inset;
  font-size: 1.2em;
  font-family: Helvetica, Arial, sans-serif;
  width: 90%;
  padding: 4px 4px;
}
.formulario textarea {
  min-height: 80px;
  min-width: 250px;
}
/* pagina privacidad */
.privacidad p {
  font-size: 1.2em;
}
/* **************pie pagina************** */
.footer {
  position: absolute;
  text-align: center;
  color: #0070c0;
  margin-top: 20px;
  width: 100%;
  left: 0px;
}
.footer spam {
  display: block;
}
.footer p {
  font-size: 14px;
  color: #1f6f74;
  font-weight: bolder;
  margin-bottom: 0px;
}
p.nombre {
  font-size: 1.8em;
}
p.licen {
  color: #409dbc;
}
.copimg {
  position: absolute;
  border-radius: 20px;
  opacity: 1;
  visibility: visible;
  transition-property: all;
  transition-duration: 0.5s;
}
.copimg:hover {
  opacity: 0.8;
  transition-property: opacity;
  transition-duration: 0.2s;
}

p.cole {
  font-size: 1.3em;
}
/* redes sociales*/
.redes-logo img {
  opacity: 0.8;
  border-radius: 2px;
  transition-property: all;
  transition-duration: 0.1s;
}
.redes-logo:hover img {
  opacity: 1;
  border-radius: 2px;
  box-shadow: hsla(0, 0%, 0%) 0px 3px 3px -2px;
  transition-property: all;
  transition-duration: 0.1s;
}
/* estilo boton whatsapp */
.whatsapp {
  position: fixed;
  display: flex;
  justify-content: center;
  align-content: center;
  right: 3%;
  bottom: 30px;
  animation-name: animation-whatsapp;
  animation-duration: 1.75s;
}

.whatsapp spam {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  margin-right: 5px;
  color: white;
  background-color: hsla(146, 50%, 40%, 0.7);
  border-radius: 6px;
  padding: 5px 5px;
  font-style: italic;
  transition-property: all;
  transition-duration: 1s;
}
.whatsapp:hover spam {
  background-color: hsla(146, 50%, 40%, 1);
}
.whatsapp img {
  border-radius: 20px;
  position: absolute;
  margin-top: -20px;
  margin-left: -17px;
  z-index: 1;
  transition-property: box-shadow;
  transition-duration: 0.5s;
}
.whatsapp:hover img {
  box-shadow: hsl(150, 100%, 30%) 0px 0px 5px, hsl(150, 100%, 30%) 0px 0px 10px inset;
  transition-property: box-shadow;
  transition-duration: 0.5s;
  opacity: 1;
}

/* ***** Responsive ***** */
@media (max-width: 850px) {
  .nav-menu ul li {
    padding: 0px 8px;
  }
  .link-nav-brand img {
    height: 28px;
  }
  .contenedor-tarjetas {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .link-nav-brand img {
    display: none;
  }
}
@media (max-width: 600px) {
  main {
    padding-top: 0px;
    margin-top: 50px;
  }
  .nav-menu {
    display: none;
  }
  .link-nav-brand {
    display: none;
  }
  .nav-menu ul li {
    padding: 0px 10px;
  }
  .nav-menu ul li a {
    font-weight: bolder;
  }
  .nav-menu ul {
    display: flex;
    flex-direction: column;
  }
  .toggle-menu {
    display: flex;
    transform: translateY(0px);
    position: relative;
    text-align: right;
    height: 40px;
    img {
      margin: 0px;
      height: 100%;
    }
  }
}
@media (max-width: 510px) {
  .nav-menu ul li {
    padding: 0px 5px;
  }
}
@media (max-width: 320px) {
  .whatsapp {
    right: 10px;
    bottom: 25px;
  }
}
@media (max-width: 850px) {
  /* logo COP oculto pantalla < 850px */
  .copimg {
    visibility: hidden;
    transition-property: all;
    animation-duration: 0.5s;
  }
}
/* ***** Animaciones ***** */
.apareceIzq {
  animation-name: apareceIzq;
}
.apareceUp {
  animation-name: apareceUp;
}
@keyframes apareceIzq {
  0% {
    transform: translatex(15px);
    opacity: 0;
  }
  20% {
    transform: translatex(5px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes apareceDrc {
  0% {
    transform: translatex(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes apareceUp {
  0% {
    transform: translateY(20px) scale(1, 1.4);
    opacity: 0;
  }
  100% {
    transform: translateY(0px) scale(1, 1.4);
    opacity: 0.8;
  }
}
@keyframes animation-whatsapp {
  0% {
    bottom: -30px;
    opacity: 0;
    transform: rotate(-90deg);
  }
  40% {
    bottom: 33px;
  }
  50% {
    bottom: 30px;
    opacity: 0.8;
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(0deg);
  }
}
