:root {
  --color-base: #fbbc2b;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Pantalla de inicio */
.start {
  position: fixed;
  z-index: 9999;
  background: var(--color-base);
  width: 100%;
  height: 100%;
  animation: animacion 1s forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes animacion {

  0%,
  80% {
    opacity: 1;
    z-index: 1;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Asegura que esté por encima del banner */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  background-color: white;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
  height: 40px;
}

/* Enlaces de navegación */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1100; /* Más alto que el banner */
}

.nav-links li a {
  text-decoration: none;
  color: var(--color-base);
  padding: 9px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links .active a {
  background-color: var(--color-base);
  color: white;
}

/* Sección derecha del nav (como íconos de búsqueda o login) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}


/* Footer */
.footer-alivie {
  background-color: var(--color-base);
  padding: 50px;
  color: white;
  font-family: sans-serif;
  margin-top: auto;
  border-radius: 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-text {
  display: flex;
  gap: 60px;
  flex: 1;
  align-items: center;
}

.footer-logo {
  width: 180px;
}

.footer-text {
  flex: 1;
  min-width: 150px;
}

.footer-text h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.footer-text p {
  font-size: 14px;
  margin: 4px 0;
}

.sucursal-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.sucursal-link:hover {
  transform: scale(1.01);
  color: rgb(255, 242, 206);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social a {
  color: white;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff3cc;
}

.copyright {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
  opacity: 0.8;
}