/*Body page*/

body{
     display: flex;
     flex-direction: column;            
     justify-content: center; 
     font-family: 'Poppins', sans-serif; 
     margin: 0; 
}

p{
  margin: 0;
}

h2 {
    font-size: 2em;
    font-weight: bold;
    color: #003F5C; 
    display: flex;
    justify-content: center;

}

/*header*/

.top-bar-content {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  gap: 20px;
}

.top-bar{
    background-color: #8CC63F;
}



.top-bar a {
    text-decoration: none;
    color: black;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.3em;
}

.top-bar-content .logo img{
  height: 40px;
  margin-top: 10px;
}

.container{
  flex: 1;
  display: flex;
  justify-content: center;
}

input{
  padding: 5px 35px 5px 10px;
  border-radius: 20px;
  border: none;
  width: 100%;
  max-width: 400px;
}

/*Nav bar*/
.nav-bar{
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-bar ul li {
    list-style: none;
    display: inline; 
    margin: 0 20px;
}

.nav-bar ul{
    text-align: center;
}

.dropbtn {
  color:black;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #FFA500}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #FFA500;
}

/*Breadcrumbs*/
/* Style the list */
ul.breadcrumb {
  padding: 10px 250px;
  list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a greater-than symbol (>) before each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: ">\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

/*Contendor de productos*/
.contenedor-productos{
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 0px;
}

.contenedor-productos img{
    width: 250px;
    cursor: pointer;
}

h5{
  margin: 0;
  margin-top: 10px;
}

.price-product{
  color: #003F5C;
  font-weight: 700;
  font-size: 1.5em;
}

.text-product{
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.text-product a {
  text-decoration: none;
  color: inherit; 
}

/*Footer*/
footer{
  background-color: #003F5C;
}

.contenedor-footer{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 30px 50px;
}

.cont-1 img{
  width: 30px;
  padding: 15px 5px;
}

.cont-2 img{
  width: 30px;
}

.cont-4 img{
  width: 300px;
}

.sub-titulos{
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.text-2{
  color: white;
}

.contacto {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.redog{
  color: white;
  width: max-content;       
  margin: 0 auto;           
  padding: 16px;
  font-size: 0.8em;
  text-align: center;
}