/* Basic styling */
* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background-image: url("Recursos/fondo-100.jpg");
}
nav {
  padding: 10px 30px;
}
ul {
  list-style-type: none;
}
.menu a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: none; 
  position: relative; 
  border-bottom: 3px solid #333;
  padding-bottom: 3px; 
}

.logo a:hover {
  text-decoration: none;
}
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Add new styles for logo and items */
.logo {
  font-size: 20px;
}

.items {
  display: flex;
  align-items: center;
}

.menu li {
  font-size: 16px;
  padding: 15px 10px;
  white-space: nowrap;
}

.linea {
  height: 20px;
  background-color: #333;
}

.centarobj {
  margin-top: 50px;
  display: block;
  text-align: center;
}


.banner {
  background-image: url("Recursos/bnrPri.png");
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: end; 
  align-items: end; 
}
.botnormal {
  display: inline-block;
  padding: 15px 25px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #333;
  background-color: #ffbd1a;
  border: none;
  border-radius: 10px;
  box-shadow: 0 7px #ff831d;
}

.botnormal:hover {
  background-color: #f6c64e;
  padding: 15px 25px;
  text-decoration: none;
  border: none;
}

.botnormal:active {
  background-color: #f6c64e;
  box-shadow: 0 4px #ff831d;
  transform: translateY(4px);
}

.pt {
  font-weight: bold;
  margin: 0 250px 50px 0;
}
/* //-- */
.accrapido {
  display: flex;
  justify-content: center; 
  gap: 50px; 
}


.botredondo {
  background-size: cover;
  display: inline-block;
  margin-top: 80px;
  padding: 15px 25px;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 150px;
  width: 300px;
  height: 300px;

  transition: background-image 0.3s;
}
#btn1 {
  background-image: url("Recursos/btn1.png");
}

#btn1:hover {
  background-image: url("Recursos/btn1.gif");
}
#btn2 {
  background-image: url("Recursos/btn2.png");
}

#btn2:hover {
  background-image: url("Recursos/btn2.gif");
}
#btn3 {
  background-image: url("Recursos/btn3.png");
}

#btn3:hover {
  background-image: url("Recursos/btn3.gif");
}

