@charset "utf-8";
/* CSS Document */

/* Fuente Montserrat para todo el texto */
body,
button,
input,
select,
textarea {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0 !important;
}

#inicio {
    color: black;
    /* background-color: LightSeaGreen; */
}

#wrapper {
    color: black;
    /* background-color: LightSkyBlue; */
}

select,
input[type="text"],
input[type="submit"],
input[type="button"] {
    width: 350px;
    position: relative;
}

/* input[type="submit"] {
    width: 200px;
}

/* input[type="button"] {
    width: 150px;
}



/* sobrantes eliminar INICIA */

h1,
h2 {
    font-size: 150%;
}

.container {
    width: 996px;
    margin: 0 auto;
    font-size: 1em;
}

section,
aside {
    padding: 10px;
    background: #ccc;
    border-radius: 5px;
}

section {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

nav {
    overflow: hidden;
}

nav ul {
    list-style-type: none;
    float: left;
    padding: 0;
}

nav ul li {
    float: left;
    padding: 3px 10px;
    margin: 2px;
    background: #ccccff;
    border-radius: 5px;
}

footer {
    margin: 10px;
    text-align: center;
    clear: both;
}


/* para 980px o menos */
@media screen and (max-width: 980px) {
    .container {
        width: 98%;
    }
    section {
        width: 68%;
    }
}

/* para 700px o menos */
@media screen and (max-width: 700px) {
    aside,
    section {
        float: none;
        width: 96%;
    }
    nav,
    section {
        font-size: 1.2em;
    }
    aside {
        margin-top: 5px;
    }
    nav ul {
        float: none;
        clear: both;
    }
}

/* para 480px o menos */
@media screen and (max-width: 480px) {
    aside {
        display: none;
    }
    nav,
    section {
        font-size: 1.5em;
    }
    section {
        width: 94%;
    }
    nav ul {
        float: left;
        clear: none;
        width: 50%;
    }
    nav ul li {
        float: none;
    }
}






/* Estilos para etiquetas y campos del formulario */

.centrado {
    text-align: center;
}

.tabla-centrada {
    width: 100%;
  margin: 0 auto; /* Esto centra horizontalmente la tabla */
  border-spacing: 0 !important;
}

.tabla-centrada p, #form1 p{
    margin: 7px 0;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Estilos para dropdown de selecci¨Žn */
#combo_programa {
  /*max-width: 388px;*/
  width: 100%;
  margin: 0;
  padding: 10px;
  margin-bottom: 7px;
  border: 1px solid #ccc;
  border-radius: 7px;
  outline: none;
  box-sizing: border-box;
  background-color: #eee;
}

/* Ajustes para campos de formulario */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 7px;
    border: 1px solid #ccc;
    border-radius: 7px;
    background-color: #eeeeee;
    outline: none;
    box-sizing: border-box; /* Asegura que el padding no incremente el ancho */
}

/* Botones como capsulas grises */
input[type="submit"],
input[type="button"] {
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    width: auto;
    padding: 10px 20px;
    background-color: #3b3b3b;
    border: none;
    border-radius: 20px; /* Esquinas redondas */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #990081; /* Cambio de color al pasar el cursor */
}
