/* Estilos generales para Movilidad Articular */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
  background: #004d40;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
header nav a:hover {
  color: #b2dfdb;
}
.hero {
  background: #e0f2f1;
  padding: 60px 0;
}
.hero .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-text {
  flex: 1 1 50%;
  padding-right: 20px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #004d40;
}
.hero-text p {
  margin-bottom: 20px;
}
.hero-text .btn {
  background: #00796b;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}
.hero-text .btn:hover {
  background: #004d40;
}
.hero-image {
  flex: 1 1 50%;
}
.hero-image img {
  width: 100%;
  border-radius: 8px;
}
.section {
  padding: 60px 0;
}
.section:nth-child(even) {
  background: #fafafa;
}
.section .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004d40;
}
.section h3 {
  margin-bottom: 10px;
  color: #00796b;
}
.section .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.section .content .text {
  flex: 1 1 60%;
}
.section .content .list {
  flex: 1 1 35%;
}
.list ul {
  list-style-type: none;
}
.list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}
.list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00796b;
  font-weight: bold;
}
.contact-form {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-top: 10px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background: #00796b;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #004d40;
}
.footer {
  background: #004d40;
  color: #fff;
  padding: 40px 0;
}
.footer .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer .about,
.footer .suscripcion,
.footer .legal {
  flex: 1 1 30%;
}
.footer h3 {
  margin-bottom: 15px;
}
.footer p,
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer form {
  display: flex;
  flex-direction: column;
}
.footer input {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}
.footer label {
  margin-bottom: 10px;
}
.footer button {
  padding: 10px;
  background: #00796b;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.footer button:hover {
  background: #00251a;
}
.footer .legal ul {
  list-style: none;
}
.footer .legal li {
  margin-bottom: 8px;
}
.footer .address {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    padding-right: 0;
  }
  header nav {
    display: none;
  }
  .section .content .text,
  .section .content .list {
    flex: 1 1 100%;
  }
}