/*Esto pertenece a la barra de navegacion*/ 
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Logo totalmente separado y absoluto */
/* Logo ahora está DENTRO de la barra de navegación */
.logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-right: 10px /* espacio entre logo y enlaces */
}


/* Barra de navegación (sin el logo dentro) */
.navbar {
  height: 80px;
  display: flex;
  justify-content: space-between; /* logo a la izquierda, enlaces a la derecha */
  align-items: center;
  background-color: #1E1E1E;
  padding: 0 40px;
  box-sizing: border-box;
}


/* Contenedor de enlaces */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Estilo de enlaces */
.navbar-links a {
  color: #F25C05;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  word-spacing: 8px;
  letter-spacing:2px ;
}

.navbar-links a:hover {
  color:  #007bff;
}
.barra-verde {
  height: 10px;
  background-color:   #007bff;/*tipo Ecopetrol */
  width: 100%;
}
/*Final de la barra de navegacion*/
/* Parte de cambio de imagen automatico*/

.slider {
  width: 100%;
  max-width: 1000px;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #1e2326;
  box-shadow: 0 40px 40px rgba(20, 16, 16, 0.4); /* sombra difusa roja */
}


.slides {
  display: flex;
  height: 100%;
  animation: slide-animation 20s infinite;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* También puedes probar 'contain' */
  flex-shrink: 0;
}

@keyframes slide-animation {
  0%   { transform: translateX(0%); }
  25%  { transform: translateX(0%); }
  33%  { transform: translateX(-100%); }
  58%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  91%  { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}
/*Seccion de nuevos productos*/
.nuevos-productos {
  padding: 60px 20px;
  background-color: #1E1E1E ;
  text-align: center;
}

.nuevos-productos h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #F25C05;
}

.tarjetas-productos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.producto {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px #4d7ea87e;
  padding: 15px;
  width: 250px;
  transition: transform 0.3s ease;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.producto h3 {
  margin-top: 15px;
  font-size: 20px;
  color: 	#D44E04;
}

.producto p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  text-align: justify;
}
/*Fondo gris*/
.footer {
  background-color: #7F7F7F;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #2B2B2B;
  border-top: 5px solid  #007bff;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 10px;
}

.footer-col h3 {
  font-weight: bold;
  margin-bottom: 13px;
}

.footer-col.right-align {
  text-align: right;
}
/*Texto Sictro*/
.logo-text{
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-right: auto;
  margin-left: 10px;
  letter-spacing: 1px;
  font-family: 'Arial', sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
}










