
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to right, #a9acac, #93d5e0);
  color: #222;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 28px;
  background: rgba(237, 249, 252, 0.85);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #0a2e36;
}

nav#nav {
  display: flex;
  gap: 22px;
}

nav#nav a {
  text-decoration: none;
  color: #0a2e36;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav#nav a:hover {
  color: #00796b;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0a2e36;
  border-radius: 3px;
}


.hero {
  text-align: center;
  padding: 140px 20px 40px;
}

.hero h1 {
  font-size: 38px;
  color: #000;
}

.hero p {
  max-width: 750px;
  margin: 20px auto;
  color: #333;
  font-size: 18px;
}


.contacto-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  justify-content: center;
  padding: 30px 20px 100px;
  max-width: 1200px;
  margin: 0 auto;
}


.formulario-contacto {
  background: rgba(255, 255, 255, 0.55);
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.formulario-contacto h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #000;
}

.campo {
  margin-bottom: 12px;
}

label.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
  background: rgba(255, 255, 255, 0.98);
  font-family: 'Outfit', sans-serif;
}

input:focus,
textarea:focus {
  border-color: #00796b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

textarea {
  resize: vertical;
  min-height: 130px;
}


.btn-enviar {
  display: inline-block;
  background: #00796b;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  width: 100%;
}

.btn-enviar:hover {
  background: #004d40;
  transform: translateY(-2px);
}


.contacto-info {
  background: rgba(255, 255, 255, 0.45);
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contacto-info h3 {
  margin-bottom: 10px;
  color: #000;
}

.contacto-info p {
  margin-bottom: 12px;
  color: #333;
}

.contacto-info ul {
  list-style: none;
  margin-top: 6px;
}

.contacto-info li {
  margin-bottom: 10px;
  color: #222;
  font-size: 15px;
}

.contacto-info a {
  color: #00695c;
  font-weight: 700;
  text-decoration: none;
}

.contacto-info a:hover {
  text-decoration: underline;
}

.horario,
.ubicacion {
  margin-top: 14px;
  color: #333;
  font-size: 14px;
}


footer {
  background: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}


.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  z-index: 2000;
}

.whatsapp-btn:hover {
  transform: scale(1.07);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}


@media (max-width: 1000px) {
  .contacto-section {
    grid-template-columns: 1fr 320px;
    padding-top: 40px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  nav#nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  nav#nav.active {
    display: block;
  }

  .contacto-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .contacto-info {
    padding: 18px;
  }

  .formulario-contacto {
    padding: 18px;
  }

  .btn-enviar {
    padding: 10px;
    font-size: 14px;
  }
}
