@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: white;
  color: #000000;
  overflow-x: hidden;
}

.menu-toggle {
  display: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo img {
  height: 69px;
  margin-right: 250px;
}

header.opaque {
  background-color: rgba(255, 255, 255, 1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-left: 250px;
}

nav li {
  display: inline;
}

nav a {
  color: black;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: large;
}

.contenedor-mayor {
  padding: 5% 5%;
  display: flex;
  flex-direction: row;
  gap: 5%;
}

#cont-solotexto {
  width: 45%;
}

#cont-solotexto h1 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 3em;
}

#cont-solotexto p {
  font-family: "Inter", sans-serif;
  font-weight: 350;
  font-size: 1.2em;
}

#form {
  width: 60%;
  background-color: white;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 2%;
}

#form p {
  font-size: 1.1em;
}

#form input {
  width: 40%;
  border-radius: 10px;
  padding: 3%;
  margin-bottom: 2.5%;
  margin-right: 2.5%;
  border: none;
  box-shadow: 0 0 0 0.05px #000000;
}

input::placeholder {
  font-size: 1.2em;
}

#form #smsConsent {

  width: fit-content;
  margin-bottom: 0px;

}

#form label {

  font-size: small;

}

button {
  background-color: rgb(79, 0, 153);
  color: rgba(255, 255, 255, 0.901);
  padding: 2% 3%;
  border-radius: 10px;
  font-size: large;
  border: none;
}

.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.footer-secondrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.footer-item {
  font-size: 0.95em;
  flex: 0;
  min-width: 200px;
}

.footer-logo-tagline img {
  max-height: 80px;
  max-width: 80px;
}

.footer-logo-tagline p {
  opacity: 0.4;
  font-size: 0.8em;
  margin: 0;
  text-align: left;
}

.footer-nav ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.footer-nav ul li,
.footer-services ul li {
  margin-bottom: 15px;
  font-size: 0.9em;
}

.footer-nav a,
.footer-services a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-services a:hover {
  color: #616161;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #616161;
}

.footer-social img {
  width: 15px;
  height: auto;
  margin-bottom: 2.7px;
}

hr {
  opacity: 0.2;
  border: none;
  border-top: 0.5px solid #000000;
  margin-left: 5vw;
  margin-right: 5vw;
}

.footer-bottom p {
  font-size: 0.8em;
  margin-left: 5vw;
  text-align: left;
}

@media (max-width: 768px) {
  
  .logo img {
    height: 50px;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2em;
    color: #000;
    cursor: pointer;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    z-index: 10000;
  }
  
  nav.open {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
    text-align: center;
  }
  
  nav a {
    font-size: 1em;
  }
  
  .contenedor-mayor {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  #cont-solotexto {
    width: 100%;
    text-align: center;
  }
  
  #cont-solotexto h1 {
    font-size: 2em;
  }
  
  #cont-solotexto p {
    font-size: 1em;
  }

  #form {
    width: 100%;
  }
  
  #form input {
    width: 100%;
    margin-bottom: 10px;
  }
  
  #Submit {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  
  .footer-row,
  .footer-secondrow {
    flex-direction: column;
    align-items: center;
  }
  
  hr {
    margin: 0 10vw;
  }
  
  .footer-bottom p {
    text-align: center;
  }
}