@font-face {
  font-family: "Monserrat"; 
  font-weight: normal; 
  src: url('../typography/static/Montserrat-Regular.ttf');
}

@font-face {
  font-family: "Monserrat Bold"; 
  font-weight: bold; 
  src: url('../typography/static/Montserrat-Bold.ttf');
}

@font-face {
  font-family: "Monserrat Heavy"; 
  font-weight: 900; 
  src: url('../typography/static/Montserrat-Black.ttf');
}

body {
  font-family: "Monserrat";
}

.home-bg {
  background-color: #ffffff;
  color: #4A6278;
}

.main-img {
  max-width: 500px;
  min-width: 50px;
  width: 40vw;
}

.main-bg {
  padding-bottom: 2vh;
}

.principal {
  text-align: center !important;
  height: 75vh;
  padding-top: 10vh;
}

h1 {
  width: 100%;
  text-align: center;
  font-size: clamp(35px, 6vw, 90px);
  color: #00539B;
  font-family: "Monserrat Bold";
}

h2 {
  width: 100%;
  text-align: center;
  font-size: clamp(15px, 4vw, 45px);
  color: #4A6278;
}

h3 {
  width: 100%;
  text-align: center;
  font-size: clamp(15px, 2.5vw, 35px);
  color: #4A6278;
}

h4 {
  width: 100%;
  text-align: center;
  font-size: clamp(40px, 2.5vw, 30px);
}

h5 {
  width: 100%;
  text-align: center;
  font-size: clamp(25px, 2.5vw, 20px);
}

.parallax {
  position: relative;
  min-height: 35vh;
  width: 100%;
  overflow: hidden;
  background-color: #00539B;
}

.parallax-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.card-width {
  width: 18rem;
  max-width: 180px;
}

.custom-card {
  height: 100%;
  background-color: #00539B;
  color: #ffffff;
  max-width: 320px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card-text {
  text-align: center;
}

.custom-card:hover {
  background-color: #4A7EBB;
  transform: translateY(-5px);
}

.custom-card img {
  width: 80px;
  height: 80px;
  margin: 30px auto 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.services {
  width: 100%;
  padding-top: 8vh;
  padding-bottom: 8vh;
  background-color: #ffffff;
}

.services h4 {
  color: #00539B;
  margin-bottom: 5vh;
}

.contact {
  margin-top: 6vh;
  padding-top: 2vh;
  padding-bottom: 2vh;
  background-color: #4A6278;
  color: white;
}

.contact h4 {
  color: #ffffff;
}

.contact h5 {
  color: #F4F7F9;
}

a.wsp-btn {
  height: auto;
  max-width: 290px;
  padding: 15px 30px;
  border: 1px;
  border-radius: 8px;
  background-color: #00539B;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

a.wsp-btn:hover {
  background-color: #4A7EBB;
}

a.wsp-btn img {
  max-width: 50px;
  height: auto;
}

.qr-wsp {
  width: auto;
  max-width: 100%;
  max-height: 290px;
  margin-top: 3vh;
  border-radius: 1vh;
  border: 4px solid #ffffff;
}

.cat-img {
  width: auto;
  max-width: 100%;
  max-height: 500px;
}

.footer {
  background-color: #00539B;
  width: 100%;
  color: #F4F7F9;
}

.footer h5 {
  color: #ffffff;
  font-weight: normal;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.footer p {
  color: #F4F7F9;
  margin: 0.5vh 0;
}

.footer-img {
  width: 40vw;
  min-width: 300px;
  filter: brightness(0) invert(1);
}

.contact {
  margin-top: 6vh;
  padding-top: 2vh;
  padding-bottom: 8vh;
  background-color: #F4F7F9;
  color: #4A6278;
}

.contact h4 {
  color: #00539B;
}

.contact h5 {
  color: #4A6278;
}

/* ========================= */
/* FORMULARIO (Light Theme)  */
/* ========================= */

.contact-form {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Monserrat Bold";
  color: #4A6278;
  text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #DFE6EC;
  background-color: #ffffff;
  color: #4A6278;
  font-family: "Monserrat";
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form ::placeholder {
  color: #99A8B6;
  opacity: 1;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00539B;
  background-color: #ffffff;
}

.contact-form button {
  height: auto;
  padding: 15px 30px;
  border: 0;
  border-radius: 8px;
  background-color: #00539B;
  color: #ffffff;
  font-family: "Monserrat Bold";
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 10px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #4A7EBB;
}

/* ========================= */
/* MEDIA QUERIES - MOBILE    */
/* ========================= */

/* Large Laptops and Desktops (up to 1400px) */
@media (max-width: 1450px) {
  .main-img {
    width: 35vw;
    max-width: 370px;
  }

  h2 {
    font-size: clamp(20px, 3.5vw, 30px);
    padding: 0 30px;
  }

  .principal {
    height: 80vh;
    padding-top: 7vh;
  }
}

/* Standard Laptops (up to 1200px) */
@media (max-width: 1200px) {
  .main-img {
    width: 38vw;
    max-width: 420px;
  }

  h2 {
    font-size: clamp(18px, 3.8vw, 38px);
    padding: 0 25px;
  }

  .principal {
    height: 80vh;
    padding-top: 10vh;
  }
}

/* Small Laptops and Tablets (up to 992px) */
@media (max-width: 992px) {
  .main-img {
    width: 45vw;
    max-width: 400px;
  }

  h2 {
    font-size: clamp(17px, 4.2vw, 35px);
    padding: 0 25px;
  }

  .principal {
    height: 68vh;
    padding-top: 10vh;
  }

  .parallax {
    min-height: 40vh;
  }
}

/* Large Mobile Devices (up to 768px) */
@media (max-width: 768px) {
  .main-img {
    width: 60vw;
    max-width: 400px;
  }

  h2 {
    font-size: clamp(18px, 5vw, 35px);
    padding: 0 20px;
  }

  .principal {
    height: 65vh;
    padding-top: 8vh;
  }

  .parallax {
    min-height: 50vh;
  }

  .parallax-video {
    top: 50%;
    min-height: 120%;
    object-position: left bottom;
    transform: translate(-25%, -60%);
  }

  .services {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }

  .services .row {
    gap: 20px;
  }

  .services .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .custom-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-img {
    width: 60vw;
    min-width: 250px;
  }
}

/* Medium Mobile Devices (up to 576px) */
@media (max-width: 576px) {
  .main-img {
    width: 70vw;
    max-width: 350px;
  }

  h2 {
    font-size: clamp(16px, 5.5vw, 30px);
    padding: 0 15px;
  }

  .principal {
    height: 60vh;
    padding-top: 6vh;
  }

  .parallax {
    min-height: 55vh;
  }

  .parallax-video {
    top: 50%;
    min-height: 130%;
    object-position: left bottom;
    transform: translate(-25%, -60%);
  }

  .services h4 {
    font-size: clamp(32px, 8vw, 40px);
    margin-bottom: 4vh;
  }

  .services .col-sm-4 {
    margin-bottom: 25px;
  }

  .custom-card {
    max-width: 100%;
  }

  .contact h4 {
    font-size: clamp(32px, 8vw, 40px);
  }

  .contact h5 {
    font-size: clamp(18px, 5vw, 25px);
    padding: 0 15px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    padding: 10px;
  }

  .contact-form button {
    width: 100%;
    padding: 12px 20px;
  }

  .footer-img {
    width: 70vw;
    min-width: 200px;
  }
}

/* Small Mobile Devices (up to 400px) */
@media (max-width: 400px) {
  .main-img {
    width: 75vw;
    max-width: 300px;
  }

  h2 {
    font-size: clamp(14px, 6vw, 25px);
    padding: 0 10px;
  }

  .principal {
    height: 55vh;
    padding-top: 5vh;
  }

  .parallax {
    min-height: 60vh;
  }

  .parallax-video {
    top: 50%;
    min-height: 140%;
    object-position: left bottom;
    transform: translate(-25%, -60%);
  }

  .services {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .services h4 {
    font-size: clamp(28px, 9vw, 35px);
    margin-bottom: 3vh;
  }

  .services .col-sm-4 {
    margin-bottom: 30px;
  }

  .custom-card img {
    width: 70px;
    height: 70px;
    margin: 25px auto 15px;
  }

  .contact {
    padding-top: 3vh;
    padding-bottom: 6vh;
  }

  .contact h4 {
    font-size: clamp(28px, 9vw, 35px);
    margin-bottom: 2vh;
  }

  .contact h5 {
    font-size: clamp(16px, 5.5vw, 22px);
    padding: 0 10px;
    margin-bottom: 3vh;
  }

  .footer-img {
    width: 75vw;
    min-width: 180px;
  }

  .footer h5 {
    font-size: clamp(16px, 5vw, 20px);
  }

  .footer p {
    font-size: clamp(12px, 4vw, 16px);
  }
}