/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0077b6;
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0077b6;
}

#menu-toggle {
  display: none;
}

/* Hero section */
.hero {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #0077b6;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #005f8e;
}

/* Services section */
.servicios {
  background: #f9f9f9;
  padding: 60px 0;
}

.servicios h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.servicio-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.servicio {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  max-width: 300px;
}

.servicio h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

/* About section */
.nosotros {
  padding: 60px 0;
}

.nosotros h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.nosotros p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Reviews section */
.reseñas {
  background: #f9f9f9;
  padding: 60px 0;
}

.reseñas h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.reseña-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.reseña {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 700px;
}

/* CTA section */
.cta {
  background: #0077b6;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta p {
  margin-bottom: 30px;
}

.cta .btn-cta {
  background: #fff;
  color: #0077b6;
}

.cta .btn-cta:hover {
  background: #e6e6e6;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 200px;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    display: none;
  }

  .menu-icon {
    display: block;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .servicio-list {
    flex-direction: column;
    align-items: center;
  }
}
