@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: #605a5f;
  --secondary-color: #f5f5f5;
  --normal-font-color: #737373;
  --title-font-color: #282828;
  --normal-font-size: 16px;
  --title-font-size: 40px;
  --up-title-font-size: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: var(--normal-font-size);
  color: var(--normal-font-color);
}

.btn-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 30px;
  transform: translate(-50%, -50%);
  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 58px;
  font-size: 1.8em;
  color: #ffffff;
  font-weight: 100;
  border-radius: 50%;
}
.btn-whatsapp a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.btn-whatsapp:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  left: -20px;
  right: -20px;
  bottom: -20px;
  top: -20px;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}
.btn-whatsapp:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  left: -20px;
  right: -20px;
  bottom: -20px;
  top: -20px;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}
.btn-whatsapp .pulsaDelay:after {
  animation-delay: 0.5s;
}
@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.header-mobile {
  display: none;
}

.home-mobile {
  display: none;
}

.header {
  background-image: url(../img/Group127.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 100vh;
}
.header .menu-container {
  width: 100%;
  height: 5rem;
  display: flex;
  transition: all 0.1s;
  align-items: center;
  padding: 0.5rem 9rem;
  z-index: 1000;
}
.header .menu-container .left-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  float: left;
  width: 60%;
  height: 100%;
}
.header .menu-container .left-menu .logo {
  width: auto;
  height: auto;
}
.header .menu-container .left-menu .menu-items {
  display: flex;
  list-style: none;
}
.header .menu-container .left-menu .menu-items li {
  color: var(--normal-font-color);
  font-size: var(--normal-font-size);
  margin-right: 1.5625rem;
}
.header .menu-container .left-menu .menu-items li a {
  color: var(--normal-font-color);
  font-size: var(--up-title-font-size);
  font-weight: 400;
  text-decoration: none;
}
.header .menu-container .right-menu {
  display: flex;
  align-items: center;
  float: right;
  width: 40%;
  height: 100%;
  font-size: var(--up-title-font-size);
}
.header .menu-container .right-menu button {
  margin-left: 4.5rem;
  height: 3.25rem;
  width: 7.1875rem;
  border-radius: 0.3125rem;
  border: none;
  background-color: var(--primary-color);
  color: white;
}
.header .menu-container .right-menu p {
  margin-left: 1.6rem;
}
.header .fixed {
  position: fixed;
  background-color: white;
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.03);
}

.home-content {
  position: absolute;
  top: 30%;
  left: 10%;
  height: auto;
}
.home-content .content-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
.home-content .content-container .content-text {
  width: 58%;
  float: left;
}
.home-content .content-container .content-text h1 {
  font-size: 3.625rem;
  color: var(--title-font-color);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.0125rem;
  line-height: 5rem;
}
.home-content .content-container .content-text p {
  width: 80%;
  font-size: var(--normal-font-size);
  color: var(--normal-font-color);
  margin-bottom: 1.8rem;
  letter-spacing: 0.0125rem;
  line-height: 1.875rem;
}
.home-content .content-container .content-text .buttons a {
  text-decoration: none;
}
.home-content .content-container .content-text .buttons a button {
  width: 11.25rem;
  height: 3.25rem;
  border-radius: 0.3125rem;
  color: white;
  border: none;
  background-color: var(--primary-color);
  font-size: var(--up-title-font-size);
  transition: all 1s;
  cursor: pointer;
}
.home-content .content-container .content-text .buttons a .btn-view-more {
  margin-left: 0.625rem;
  width: 9rem;
  background-color: white;
  color: var(--primary-color);
  border: 0.0625rem solid var(--primary-color);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40rem;
}
.about-content .about-container {
  width: 100%;
  height: 100%;
  padding: 4rem 8.5rem;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content .about-container .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 50%;
}
.about-content .about-container .text-container h3 {
  font-size: var(--up-title-font-size);
  color: var(--normal-font-color);
  margin-bottom: 0.625rem;
}
.about-content .about-container .text-container h1 {
  font-size: var(--title-font-size);
  color: var(--title-font-color);
  margin-bottom: 1.5625rem;
}
.about-content .about-container .text-container p {
  width: 100%;
  font-size: var(--normal-font-size);
  color: var(--normal-font-color);
  margin-bottom: 1.5625rem;
  line-height: 2.1875rem;
  letter-spacing: 0.0125rem;
}
.about-content .about-container .img-container {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-content .about-container .img-container img {
  margin-right: 2.375rem;
  width: 34.125rem;
  height: 24.5rem;
}

.especialidades-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.especialidades-content .especialidades-container {
  width: 100%;
  height: 100%;
  padding: 5rem 8.5rem;
}
.especialidades-content .especialidades-container h1 {
  font-size: var(--title-font-size);
  color: var(--title-font-color);
  margin-bottom: 0.625rem;
}
.especialidades-content .especialidades-container p {
  font-size: var(--normal-font-size);
  color: var(--normal-font-color);
  margin-bottom: 4rem;
}
.especialidades-content .especialidades-container .icon-list {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.especialidades-content .especialidades-container .icon-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.875rem, 13.5rem));
  justify-content: space-evenly;
  grid-gap: 3.5rem;
}
.especialidades-content .especialidades-container .icon-list ul li {
  list-style: none;
  width: 14.875rem;
  height: 13.5rem;
  padding: 2rem;
  background-color: white;
  border-radius: 0.075rem;
  box-shadow: 0rem 0.625rem 1.125rem -0.0625rem rgba(0, 0, 0, 0.072);
  display: block;
  justify-content: flex-start;
}
.especialidades-content .especialidades-container .icon-list ul li img {
  width: 5rem;
  height: auto;
}
.especialidades-content .especialidades-container .icon-list ul li p {
  margin-top: 1.5rem;
  height: 5px;
  font-size: 1rem;
  color: var(--normal-font-color);
}

.resp-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40rem;
}
.resp-content .resp-container {
  width: 100%;
  height: 100%;
  padding: 4rem 8.5rem;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resp-content .resp-container .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 50%;
  float: right;
}
.resp-content .resp-container .text-container h3 {
  font-size: var(--up-title-font-size);
  color: var(--normal-font-color);
  margin-bottom: 0.625rem;
}
.resp-content .resp-container .text-container h1 {
  font-size: var(--title-font-size);
  color: var(--title-font-color);
  margin-bottom: 1.5625rem;
}
.resp-content .resp-container .text-container p {
  width: 100%;
  font-size: var(--normal-font-size);
  color: var(--normal-font-color);
  margin-bottom: 1.5625rem;
  line-height: 2.1875rem;
  letter-spacing: 0.0125rem;
}
.resp-content .resp-container .img-container {
  width: 50%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resp-content .resp-container .img-container img {
  margin-right: 2.375rem;
  width: 34.125rem;
  height: 24.5rem;
}

.gallery-content {
  display: flex;
  width: 100%;
}
.gallery-content .gallery-main {
  width: 100%;
  height: 100%;
  padding: 5rem 8.5rem;
}
.gallery-content .gallery-main h1 {
  font-size: var(--title-font-size);
  color: var(--title-font-color);
  margin-bottom: 0.625rem;
}
.gallery-content .gallery-main p {
  font-size: var(--normal-font-size);
  color: var(--normal-font-color);
  margin-bottom: 4rem;
}
.gallery-content .gallery-main .gallery-container {
  width: 100%;
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.gallery-content .gallery-main .gallery-container img {
  width: auto;
  height: auto;
}

footer {
  background-color: white;
  padding: 40px 0 1.25rem 0;
}
footer .container-footer {
  max-width: 87.5rem;
  padding: 0 4%;
  margin: auto;
}
footer .container-footer .row-footer {
  display: flex;
  flex-wrap: wrap;
}
footer .container-footer .row-footer .footer-col {
  width: 25%;
  padding: 0 0.9375rem;
}
footer .container-footer .row-footer .footer-col img {
  margin-left: -20px;
}
footer .container-footer .row-footer .footer-col h4 {
  font-size: 1.125rem;
  color: var(--title-font-color);
  margin-bottom: 1.25rem;
  font-weight: 500;
  position: relative;
  font-weight: 600;
}
footer .container-footer .row-footer .footer-col p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--title-font-color);
}
footer .container-footer .row-footer .footer-col ul {
  list-style: none;
}
footer .container-footer .row-footer .footer-col ul li {
  margin: 0.625rem 0;
}
footer .container-footer .row-footer .footer-col ul li a {
  font-size: 0.875rem;
  text-transform: capitalize;
  color: var(--title-font-color);
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}
footer .container-footer .row-footer .footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 0.625rem;
}
footer .container-footer .row-footer .footer-col .medias-socias {
  margin-top: 1.875rem;
}
footer .container-footer .row-footer .footer-col .medias-socias a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  margin: 0 0.625rem 0.625rem 0;
  text-decoration: none;
  border-radius: 50%;
  color: var(--normal-font-color);
  border: 0.0625rem solid var(--normal-font-color);
  transition: all 0.5s ease;
}
footer .container-footer .row-footer .footer-col .medias-socias a i {
  font-size: 1.25rem;
}
footer .container-footer .row-footer .footer-col .medias-socias a:hover {
  color: white;
  background-color: var(--primary-color);
}
footer .container-footer .row-footer .footer-col .form-sub input {
  width: 100%;
  padding: 0.625rem;
  font-size: 0.9375rem;
  outline: none;
  border: 0.0625rem solid var(--normal-font-color);
  color: var(--normal-font-color);
  background-color: white;
}
footer .container-footer .row-footer .footer-col .form-sub input::-moz-placeholder {
  color: var(--normal-font-color);
}
footer .container-footer .row-footer .footer-col .form-sub input::placeholder {
  color: var(--normal-font-color);
}
footer .container-footer .row-footer .footer-col .form-sub button {
  width: 100%;
  margin-top: 0.625rem;
  padding: 0.625rem;
  font-size: 1.0625rem;
  outline: none;
  border: none;
  cursor: pointer;
  color: white;
  border-radius: 0.1875rem;
  font-weight: bold;
  background-color: var(--normal-font-color);
}
@media (max-width: 800px) {
  footer .container-footer .row-footer .footer-col {
    width: 50%;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 600px) {
  footer .container-footer .row-footer .footer-col {
    width: 100%;
  }
}
footer .container-footer .copy {
  width: 100%;
  height: 1.25rem;
  display: inline-block;
  justify-content: space-between;
  margin-top: 2rem;
}
footer .container-footer .copy .rights {
  float: left;
}
footer .container-footer .copy .rights p {
  font-size: 0.75rem;
}
footer .container-footer .copy .aqua {
  float: right;
}
footer .container-footer .copy .aqua p {
  font-size: 0.75rem;
}
footer .container-footer .copy .aqua p strong a {
  color: var(--title-font-color);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-mobile {
    display: block;
    position: fixed;
    width: 100%;
    background-color: white;
  }
  .header-mobile .mobile-content {
    width: 100%;
    box-sizing: border-box;
    height: 4.375rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
  }
  .header-mobile .mobile-content ul {
    margin: 0px;
    padding: 0px;
  }
  .header-mobile .mobile-content a {
    color: var(--normal-font-color);
    font-size: var(--up-title-font-size);
    font-weight: 400;
    text-decoration: none;
  }
  .header-mobile .mobile-content a:hover {
    background: rgba(0, 0, 0, 0.013);
  }
  .header-mobile .mobile-content .logo {
    width: 10rem;
    height: auto;
  }
  .header-mobile .mobile-content .nav.active .menu-items {
    background: #fff;
    height: auto;
    padding: 0rem;
    visibility: visible;
    overflow-y: hidden;
    box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.05);
  }
  .header-mobile .mobile-content .nav.active .menu-items a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .header-mobile .mobile-content .nav.active .btn-mobile .hamburger {
    border-top-color: transparent;
  }
  .header-mobile .mobile-content .nav.active .btn-mobile .hamburger::before {
    transform: rotate(135deg);
  }
  .header-mobile .mobile-content .nav.active .btn-mobile .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  .header-mobile .mobile-content .nav .btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  .header-mobile .mobile-content .nav .btn-mobile .hamburger {
    border-top: 2px solid #181818;
    width: 20px;
  }
  .header-mobile .mobile-content .nav .btn-mobile .hamburger::after, .header-mobile .mobile-content .nav .btn-mobile .hamburger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #181818;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  .header-mobile .mobile-content .nav .menu-items {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #e7e7e7;
    transition: 0.3s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
    list-style: none;
  }
  .header-mobile .mobile-content .nav .menu-items a {
    display: block;
    padding: 1rem 0;
    margin: 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .home-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .home-mobile img {
    margin-top: 4.375rem;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .header {
    display: none;
  }
  .home-content {
    display: none;
  }
  .about-content {
    width: 100%;
    height: auto;
  }
  .about-content .about-container {
    padding: 4rem;
    flex-direction: column;
  }
  .about-content .about-container .img-container {
    width: 100%;
    float: none;
  }
  .about-content .about-container .img-container img {
    margin-right: 0px;
    width: 100%;
    height: auto;
  }
  .about-content .about-container .text-container {
    margin-top: 4rem;
    width: 100%;
    float: none;
  }
  .resp-content {
    width: 100%;
    height: auto;
  }
  .resp-content .resp-container {
    padding: 4rem;
    flex-direction: column;
  }
  .resp-content .resp-container .img-container {
    width: 100%;
    float: none;
  }
  .resp-content .resp-container .img-container img {
    margin-right: none;
    width: 100%;
    height: auto;
  }
  .resp-content .resp-container .text-container {
    margin-top: 4rem;
    width: 100%;
    float: none;
  }
  .especialidades-content .especialidades-container {
    padding: 4rem;
  }
  .especialidades-content .especialidades-container .icon-list ul {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 9rem));
  }
  .especialidades-content .especialidades-container .icon-list ul li {
    width: 9rem;
    height: 9rem;
    padding: 1rem;
  }
  .especialidades-content .especialidades-container .icon-list ul li img {
    width: 4rem;
    height: auto;
  }
  .especialidades-content .especialidades-container .icon-list ul li p {
    margin-top: 1rem;
    font-size: 0.85rem;
  }
  .gallery-content .gallery-main {
    padding: 4rem;
  }
}/*# sourceMappingURL=styles.css.map */