/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Encabezado */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #004080;
  color: white;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  max-height: 100px;
  max-width: 100px;
}

.logo h1 {
  font-size: 1.5em;
}

.logo p {
  font-size: 1em;
  color: #ccc;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.cta-button {
  background-color: #00bcd4;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  background-color: #e6f2ff;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content img {
  max-width: 45%;
  border-radius: 10px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-buttons a {
  margin-right: 10px;
}

/* Servicios */
.servicios-destacados {
  padding: 40px 20px;
  text-align: center;
}

.servicios-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.servicios-grid div {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.servicios-grid img {
  max-width: 100%;
  height: auto;
}

/* ¿Por qué elegirnos? */
.porque-elegirnos {
  padding: 40px 20px;
  background-color: #fff;
}

.porque-elegirnos ul {
  list-style: none;
  padding-left: 0;
}

.porque-elegirnos li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Formulario */
.formulario-cita {
  padding: 40px 20px;
  background-color: #e6f2ff;
}

.formulario-cita form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
  gap: 15px;
}

.formulario-cita input,
.formulario-cita select,
.formulario-cita textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formulario-cita button {
  background-color: #004080;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #004080;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9em;
}

footer a {
  color: #00bcd4;
  text-decoration: none;
}

footer img {
  max-height: 100px;
  max-width: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar,
  .hero-content,
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info {
    align-items: center;
  }

  .hero-content img,
  .hero-text {
    max-width: 100%;
  }

  .servicios-grid {
    flex-direction: column;
    align-items: center;
  }
}
