body {
  background-color: #f4f4f4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header superior tipo ecommerce */
.top-header {
  background: #1b1c1d;
  color: white;
  font-size: 0.9em;
  padding: 8px 0;
}

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

.top-header .left span,
.top-header .right a {
  margin-right: 15px;
  color: #f1f1f1;
  text-decoration: none;
}

.top-header .right a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Menú principal */
.main-menu {
  background: #f4f4f4;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.main-menu .ui.menu.align-items-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none !important; /* Remueve el borde inferior por defecto de Semantic */
  box-shadow: none !important; /* Por si también aplica sombra */
}

.main-menu .logo-container {
  padding: 0;
}

.logo-img {
  max-height: 70px;
  width: auto;
  display: block;
}

.menu-items {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.main-menu .menu-items .item {
  font-weight: 500;
  color: #222;
  font-size: 1.05em;
}

.main-menu .menu-items .item:hover {
  color: #0074d9;
}

/* Banner principal */
.banner {
  background-image: url('../pictures/home.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  padding: 120px 20px;
  color: white;
  /* background-attachment: fixed; */
}

.banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.banner .ui.text.container {
  position: relative;
  z-index: 2;
}

.banner h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease-out forwards;
}

.banner p {
  font-size: 1.3em;
  animation: fadeInUp 1.2s ease-out forwards;
}

.banner .ui.button {
  margin-top: 20px;
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Secciones */
.ui.vertical.segment {
  padding: 60px 0;
}

.ui.header {
  font-size: 2.3em;
  margin-bottom: 30px;
  color: #222;
}

.ui.grid .column {
  text-align: center;
  padding: 20px;
}

.ui.grid .column h3 {
  font-size: 1.4em;
  margin-top: 10px;
}

.ui.grid .column p {
  font-size: 1em;
  color: #555;
}

/* Testimonios */
#testimonials .ui.segment {
  transition: box-shadow 0.3s ease;
}

#testimonials .ui.segment:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#testimonials img {
  margin-bottom: 10px;
  border-radius: 50%;
}

#testimonials p {
  font-style: italic;
  color: #333;
}

/* Ubicación */
#location .ui.segment {
  padding: 0;
  border: none;
  box-shadow: none;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Botón con efecto hover */
.ui.button:hover {
  background-color: #003d73 !important;
  color: white;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
  margin-left: auto;
  padding: 10px;
}