* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*Body*/
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #e3e4e4;
  background-size: cover;
  background-position: center;
  position: relative;
}
/*Header*/
a {
  text-decoration: none;
  color: inherit;
}


.background-wrapper {
  position: relative;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background-color: transparent;
}

header .container {
  background-color: #181818;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 40px;
}

.logo {
  flex: 1;
}

header .logo img {
  height: 60px;
  display: block;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}


.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #e3e3e3;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #0A5C63;
}

.hamburger {
  display: none;
}

/*Formulario*/
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-section h2 {
  font-size: 2rem;
  color: #0A5C63;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.contact-form select:hover {
  border-color: #333;
}



.btn-enviar {
  background-color: #00CEF0;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-enviar:hover {
  background-color: #0096B0;
}

.footer {
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer .container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.footer .footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer h3 {
  color: #00CEF0;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer ul li :hover{
  color: #00CEF0;
}

.footer ul li img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.footer a img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
}

.footer a img:hover {
  transform: scale(1.1);
}

.footer p {
  margin-top: 20px;
  font-size: 0.9rem;
}

/*Menu responsive*/
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    gap: 30px;
  }
}

html {
  scroll-behavior: smooth;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  z-index: 2000;
  position: absolute; 
  top: 10px;          
  right: 20px;        
}

@media (max-width: 1024px) {
  header {
    padding: 10px 20px;
  }
  header .logo img {
    height: 50px;
    margin-left: 0;
  }
  .nav ul li a {
    padding: 5px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  
  .logo{
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 70%;
  }

  .nav.active {
    display: flex;
    
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #2222229a;
    width: 60%;
    padding: 20px 0;
  }

  header {
    justify-content: space-between;
  }

  header .container {
    background-color: transparent;
    box-shadow: none;
  }
  .footer .container {
    flex-direction: column;
    gap: 30px;
  }

  .vertical-line {
    width: 80% !important;
    height: 1px !important;
    margin: 20px auto !important;
  }
}

@media (max-width: 480px) {
  header .logo img {
    height: 45px;
  }
  .nav ul li a {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  .hero .container {
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.vertical-line {
  width: 1px;              
  height: 120px;           
  background-color: #f9f9f9; 
  margin: 0 auto;         
}