@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: #F8F5F0;
  color: #2E2E2E;
}

header.sticky {
  position: sticky;
  top: 0;
  background: #3B3B3B;
  color: white;
  padding: 10px 20px;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#menu-toggle, #menu-close {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

nav#main-menu {
  display: flex;
  gap: 20px;
}

nav#main-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

nav#main-menu a:hover {
  color: #FFD580;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  #menu-close {
    display: block;
    text-align: right;
    font-size: 24px;
    margin-bottom: 10px;
  }

  nav#main-menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #3B3B3B;
    padding: 20px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 999;
    width: 220px;
  }

  nav#main-menu.active {
    display: flex;
  }
}

.content, main.content, section.content {
  text-align: justify;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1024px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

.content h1, .content h2 {
  text-align: left;
  color: #1E1E1E;
}

ul {
  padding-left: 1.2rem;
}

.cta-btn {
  background-color: #FFD580;
  padding: 10px 20px;
  text-decoration: none;
  color: #2C2C2C;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #e6c065;
}

footer {
  text-align: center;
  padding: 20px;
  background: #3B3B3B;
  color: white;
}

footer a {
  color: #FFD580;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.formulario-contacto {
  max-width: 600px;
  margin-top: 30px;
}

.formulario-contacto .campo {
  margin-bottom: 20px;
}

.formulario-contacto label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.formulario-contacto input,
.formulario-contacto textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
  border-color: #FFD580;
  outline: none;
}

.cta-btn {
  background-color: #FFD580;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  color: #2C2C2C;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e6c065;
}
@media (max-width: 600px) {
  .formulario-contacto {
   
    padding-right: 16px;
  }
}