@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Poppins:wght@400;600;900&display=swap");
:root {
  --blue: #00b8b8;
  --black: #333;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --border: 0.2rem solid rgba(0, 0, 0, 0.1);
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none !important;
}
*::-webkit-scrollbar {
  height: 0.5rem;
  width: 1rem;
}
*::-webkit-scrollbar-track {
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--blue);
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}
section {
  padding: 7rem 2rem;
}
.contenido_responsive_home, .contenido_responsive_about, .contenido_responsive_services {
  min-height: calc(100vh - 140px);
}
.link-btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  background-color: var(--blue);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--black);
}
.link-btn:hover {
  background-color: var(--black);
  color: var(--white);
}
.pre_header{
  background: rgb(166, 7, 7);
  height: 30px;
  font-size: 12px;
  color: white;
}
.pre_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.top_margin{
  margin-top: 30px;
}
.header {
  padding: 1rem;
  border-bottom: var(--border);
}
.header.active {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border: 0;
}
.header .logo {
  width: 80px;
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  color: var(--black);
}
.header .logo h2 {
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  position: absolute;
  top: 10%;
}
.header .logo .border_text {
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, 1px 1px 0 black,
    -1px 1px 0 black;
  animation: palpitar 3s ease-in-out infinite;
}
.header .logo .wavy {
  color: red;
  animation: wave 3s ease-in-out infinite;
}
.header .nav a {
  margin: 0 1rem;
  font-size: 1.5rem;
  color: var(--black);
}
.header .nav a:hover {
  color: var(--blue);
}
#menu-btn {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  display: none;
}
.btns-contact{
  position: fixed;
  z-index: 9999;
  bottom: 0px;
  right: 0px;
  display: grid;
  margin: 30px;
  font-size: 20px;
  gap: 10px;
  text-align: center;
}
.btns-contact a{
  border-radius: 50%;
  color: white;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cellphone{
  background: blue;
}
.whatsapp{
  background: green;
}

.cellphone:hover, .whatsapp:hover{
  transform: scale(1.1);
}
@keyframes wave {
  0%,
  100% {
    clip-path: polygon(
      0% 47%,
      10% 48%,
      33% 54%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
    transform: scale(1);
  }
  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
    transform: scale(1.1);
  }
}
@keyframes palpitar {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* responsive */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header .link-btn {
    display: none;
  }
  section {
    padding: 5rem 2rem;
  }
  .header .logo h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
    transition: 0.2s linear;
  }
  #menu-btn.fa-times {
    transform: rotate(180deg);
  }
  .header .nav {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 1rem 0;
    text-align: center;
    flex-flow: column;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
  }
  .header .nav.active {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  .header .nav a {
    margin: 1rem 0;
    font-size: 2rem;
  }
  section {
    padding: 3rem 1rem;
  }
  .contenido_responsive_home, .contenido_responsive_about {
    justify-content: center;
  }
  .pre_header {
    height: 40px;
  }
  .top_margin{
    margin-top: 40px;
  }
}

@media (max-width: 530px) {
  .pre_header {
    height: 55px;
  }
  .top_margin{
    margin-top: 55px;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .btns-contact{
    top: 110px;
    bottom: auto;
    margin: 15px;
    opacity: 60%;
  }
  .btns-contact:hover{
    opacity: 100%;
  }
}
