*{
    margin: 0;
    padding: 0;
}

body {
    font-family: "Raleway", sans-serif;
        color: #000000;
}

.header {
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #ffffff;
    display: flex;
    flex-direction:row;
    z-index: 1000;
}

.container {
    justify-content:space-around;
    align-items: center;
    width: 100%;
    display: flex;
    align-items: center;
}

.btn-menu label {
    color: #023c00;
    font-size: 25px;
    cursor: pointer;
    margin-right: 10px; /* Ajusta el espacio entre el botón del menú y el texto "Menú" */
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.logo h1 {
    color: #023c00;
    font-weight: 400;
    font-size: 22px;
    margin-right: 10px; /* Ajusta el espacio entre el texto "Menú" y el logotipo */
}

.principallog img {
    
    width: 150px;
}

.menu {
    display: flex;
}

.menu a {
    display: inline-block;
    font-family: "Raleway", sans-serif;
        padding: 25px 15px; /* Ajusta el espacio arriba/abajo y los lados */
    line-height: normal;
    text-decoration: none;
    color: #023c00;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 15px;
    margin-right: 10px; /* Ajusta el espacio entre los elementos del menú */
}

.menu a:hover {
    border-bottom: 2px solid #023c00;
    padding-bottom: 5px;
}


/*Fin de Estilos para el encabezado*/



/*fin menu lateral */
 /*--------------*/
  
  .direcciones-contenedor {
    background: url(../img/AC1.jpg);
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    color: #ffffff;
    
  }
  
  .direcciones{
    display: flex;
    flex-direction: column;
    margin-left: 200px;
  }
  
  
  .direcciones a{
    text-decoration: none;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
  }
  
  .urles p{
    margin-top: 70px;
    margin-left: 10px;
    font-size: 15px;
  }
  
  .urles p:hover{
    font-weight: bold;
  }
  
  .urles{
    margin-top: 10px;
    display: flex;
    width: 80%;
   
  }
  
  .textos-one {
    margin-top: 30px;
    flex-direction: column;
    display: flex;
  }
  
  .textos-one h1{
    font-size: 30px;
  }
  
  .textos-one p{
    width: 60%;
    padding-top: 20px;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
  }
  
  

  
/*------*/

h2 {
    text-align: center;
}

.simulador {
    margin: 40px auto 0;
    width: 60%;
}

.simulador h2{
    margin-top: 10px;
    margin-bottom: 20px;
}   

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}


input[type="number"], select {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-top: 20px;
    margin-bottom: 50px;
}

table th, table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    
}

table th {
    background-color: #f2f2f2;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
  
}