 
/* ESTILO DE BODY*/ 
 body {
            margin: 0;
            font-family: Arial, sans-serif;
            box-sizing: border-box;
            background-color: #fffef6;
            background-image: url("img/fondo.png");
            font-family: Tahoma;

        }

/* ESTILO DE H1 TITULO*/ 
        h1 {
            text-align: center;
            color: #13235e; 
            padding: 5px;
            margin: 0;
        }

/* ESTILO DE H3 TITULO2*/ 
        h3 {
            color:  #544541;
            padding: 10px;
            margin: 0;
        }

/*ESTILO PARRAFO */

        #UNO_uno{
            color:  #544541;
            padding: 20px; 
            text-align: justify; 
            line-height: 2.0;
        }

/*Imagen Pablo*/ 
        #Pablo{

        }

        .menu-toggle {
            display: none;
            background-color: #edb44d;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
            width: 100%;
            color:#3b3e3e;
        }


/* ESTILO DEL SUBMENÚ */ 
    
        .submenu {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            background-color:  #fffef6;
            padding: 10px;

        }
        .submenu a {
            color: #544541;
            font-size: 18px;
            padding: 10px 15px;
            text-decoration: none;
            text-align: center;
        }
        .submenu a:hover {
            background-color: #edb44d;
        }
         


/* ESTILO DE LAS SECCIONES LOS CONTENEDORES DONDE VA LA INFORMACIÓN*/

        /* Contenedor de secciones */
        .contenedor-secciones {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 10px;
            padding: 1px;
        }
        .seccion {
            background-color:  #fffef6;;
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

         .seccion img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: auto;
            border-radius: 8px;
        }

/*ESTILO BOTONES */

.expo {
  align-content: ;
  border: none;
  color: #1d1d1b;
  font-size: 15px;
  font-weight: bold;
  padding: 20px 28px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #edb44d; /* Color base del botón */
  transition: transform 0.3s ease-in-out; /* Transición suave del efecto de pulsación */
}
.expo:hover {
  background-color: #f7d55a; /* Cambia el color al pasar el cursor sobre el botón */
}
.expo:active {
  transform: scale(0.9); /* Reduce ligeramente el tamaño del botón cuando se hace clic */
}



.boton-descarga {
      padding: 10px 20px;
      background-color: #ea7648;
      color: white;
      border: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      border-radius: 30px;
    }

    .boton-descarga:hover {
      background-color: #e7854b;
    }

.boton-aplicacion {
      padding: 10px 20px;
      background-color: #edb44d;
      color: white;
      border: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      border-radius: 30px;
    }

    .boton-aplicacion:hover {
      background-color: #e2c250;
    }


    .boton-aplicacionRV {
      padding: 10px 20px;
      background-color: #99bc73;
      color: white;
      border: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      border-radius: 30px;
    }

    .boton-aplicacionRV:hover {
      background-color: #B9D672;
    }

    .boton-atras {
      padding: 10px 20px;
      background-color:#f76571;
      color: white;
      border: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      border-radius: 30px;
    }

    .boton-atras:hover {
      background-color:  #e12635;
    }

/*ESTILO DE LISTA*/


        li {

      margin-bottom: 1px;
      padding: 1px;
      border-radius: 5px; /* Bordes redondeados */
        list-style-position: inside;
    }
 #uno{
     color: #6a9dd9; /* Color azul violeta */
 }


footer {
      background-color:#6a9dd9;
    background-image: url("img/pie.png");
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer-seccion {
    flex: 1;
}

.footer-seccion h4 {
    margin-bottom: 10px;
}

.footer-seccion a {
    color: #fff;
    text-decoration: none;
}

.footer-seccion img {
            max-width: 200px;
            height: auto;
        }


/* RESPONSIVO PARA PANTALLAS MÁS PEQUEÑAS */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .submenu {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            .submenu.show {
                display: flex;
            }
        }