body{
    margin: 0;
    padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

.navbar {
    background-color: rgb(68, 156, 17);
    margin: 0; 
    padding: 10px;
    display: flex;
    align-items: center;
}

.nav-link:hover{
    background-color: rgb(0, 105, 44);
    border-radius:30px;
    padding:10px;
}

.nav-link{
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
    font-weight: bolder;
}

.nav-list{
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.nav-item{
    text-align: center;
    margin: 0 15px;
}

.main-footer{
    color: rgb(245, 245, 245);
    padding: 10px;
    margin: 0;
    background-color: rgb(59, 59, 59);
    text-align: center;
}

.footer-links{
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.footer-link{
    color: white;
    text-decoration: none;
    text-align: center;
    margin: 0 15px;
}

.footer-link:hover{
    color: rgb(163, 163, 163);
    text-decoration: underline;
}

.product-subtitle{
    color:rgb(59, 59, 59);
    margin-left: 90px;
    margin-right: 90px;
}

.header-title{                                                                                                                                                                                                                                                                                                                                                                          
    text-align: center;
    margin: 10px;
}

.div-section{
    padding: 10px;
    margin: 50px;
}

.texto{
    flex: 1;
    max-width: 80%;
    margin-left: 20px ;
}

.logo {
    height: 50px;
    width: auto;
    background-color: rgb(255, 255, 255);
    border-radius:30px;
}

.logo:hover{
    background-color: rgb(202, 202, 202);
    border-radius:30px;
}

.logo-link {
    display: flex;
    align-items: center;
    margin-right: 20px;
    text-decoration: none;
}

.footer-logo {
    width: auto;
    height: 500px;
}

.formulario-contacto {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.campo-formulario {
  margin-bottom: 20px;
}

.label-formulario {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #34495e;
}

.input-formulario,
.textarea-formulario {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd6dd;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.input-formulario:focus,
.textarea-formulario:focus {
  border-color: #2980b9;
  outline: none;
}

.boton-enviar {
  background-color: #1d3557;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton-enviar:hover {
  background-color: #457b9d;
}