
body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #F8F5F0; color: #5A4A42; }
header {
    background: #F8F5F0;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
nav a { color: #5A4A42; text-decoration: none; margin: 0 15px; font-weight: 600; transition: color 0.3s; }
nav a:hover { color: #D98C63; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; height: 400px; background-size: cover; background-position: center; }
.carousel-dots { text-align: center; margin-top: 10px; }
.carousel-dots button { background: #ccc; border: none; border-radius: 50%; width: 12px; height: 12px; margin: 5px; cursor: pointer; }
.carousel-dots button.active { background: #D98C63; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 40px 0; }
.service-card { background: white; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; text-align: center; }
.service-card img { width: 100%; height: 150px; object-fit: cover; }
.service-card h2 { margin: 15px 0 10px; font-size: 20px; }
.service-card p { padding: 0 10px 20px; font-size: 16px; }
.service-card a { display: inline-block; margin-bottom: 15px; background: #D98C63; color: white; padding: 8px 16px; text-decoration: none; border-radius: 4px; }
.service-card a:hover { background: #B76A4A; }
footer { background: #F8F5F0; padding: 20px; text-align: center; font-size: 14px; border-top: 1px solid #ddd; }
footer a img { width: 24px; margin: 0 8px; vertical-align: middle; }

header img {
  height: 80px;
}
.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  align-items: center;
}
.service-card {
  width: 300px;
}


/* Ajuste de altura del logo */
header img {
  height: 100px;
}

/* Carrusel */
.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.carousel img {
  width: 100%;
  display: none;
}
.carousel img.active {
  display: block;
}
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #D58A61;
}


/* Service cards horizontal */
.service-card-horizontal {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 20px auto;
  max-width: 900px;
  width: 90%;
  overflow: hidden;
}
.service-card-horizontal img {
  width: 40%;
  height: auto;
  object-fit: cover;
}
.service-content {
  padding: 20px;
  flex: 1;
}
.service-content h3 {
  margin-top: 0;
}
.service-content p {
  margin: 10px 0;
}
.service-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #D58A61;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}


/* Aumentar tamaño del logo */
header img {
  height: 150px !important;
  max-height: 150px;
  width: auto;
}

.logo-container {
    text-align: center;
    margin: 20px 0;
  }
  
  .logo-container img {
    height: 80px; /* o el tamaño que quieras */
  }
  
  .nav-centered {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .nav-centered a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .nav-centered a:hover {
    text-decoration: underline;
  }
  