@font-face { 
    font-family: "Poppins"; 
    src: url("./fnt/Poppins-Regular.otf"); 
}

@font-face { 
    font-family: "Comfortaa"; 
    src: url("./fnt/Comfortaa-VariableFont_wght.ttf"); 
}

* {
    font-family: "Poppins"; 
}

:root {
    --color-blanco: #FFFFFF;
    --color-negro: #000000;
    --color-lila: #9097c9;
    --color-azul: #20509a;
    --color-naranja: #f67f2f;
}

html, body {
    width: 100%; 
    height: 100%; 
    margin: 0; 
    padding: 0;
    background-image: url('./src/04.png');
    background-size: cover;
    background-position: center;
    scroll-behavior: smooth; 
    font-size: 16px;
}


.menu {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 92px;
    z-index: 3;   
    margin: 0;
    padding: 0;
    background-color: #FFFC;
    box-shadow: 0px 0px 5px #000;
}

.contenido {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.logo {
    width: 120px;
    padding-left: 20px;
}

.logo img {
    width: 120px;
    margin: 10px;
}

.botonera {
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    height: auto;
    padding-right: 20px;
}

.boton {
    font-size: 20px;
    position: relative;
    display: block;
    text-align: center;
    place-content: center;
    padding: 5px;
    text-decoration: none;
    transition: 0.5s;
    color: var(--color-azul);
}

.boton::before {
    content: "[";
    color: #FFFFFF00;    
}

.boton::after {
    content: "]";
    color: #FFFFFF00;      
}

.boton:hover:before {
    content: "[";
    color:var(--color-naranja);
}

.boton:hover:after {
    content: "]";
    color:var(--color-naranja);
}

.general {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    color: var(--color-negro);
    padding-top: 100px;
    backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.4);
}

.inicio {
    text-align: center;
    justify-content: center;
    transition: 1s;
    background-image: url("./src/03.png");
    background-size: cover;
}

.alternativo {
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    color: var(--color-negro);
}

.apartado {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.centrado {
    align-items: center;
}

.logo-grande {
    width: 600px;
    max-width: 90%;
}

.banner {
    display: block;
    width: 100%;
    height: 400px;
    background-color: var(--color-blanco);
    background-image: url('foto.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.titulo {
    font-family: "Comfortaa";
    font-weight: bold;
    font-size: 4em;
    user-select: none;
    text-shadow: 0px 1px 1px #000;
}

.especial {
    color: var(--color-azul);
}

.descripcion {
    font-size: 1.3em;
}

.portada {
    color: var(--color-blanco);
    text-shadow: 0px 1px 1px #000;
}

.naranja {
    color: var(--color-naranja);
}

.enlaces {
    display: flex;
    flex-wrap: wrap;
    place-content: center;
    margin-top: 20px;;
}

.enlace {
    display: block;
    background-color: var(--color-blanco);
    color: var(--color-negro);
    width: 200px;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 1px 1px #000;
    font-size: 1.2em;
}

.enlace:hover {
    background-color: var(--color-naranja);
    color: var(--color-blanco)
}

.secciones {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    background-color: #FFFC;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
    color: var(--color-negro);
    box-shadow: 0px 0px 5px #666;
}

.seccion {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    min-width: 400px;
}

.seccion-cab {
    font-weight: bold;
    font-size: 1.5em;
    color: var(--color-naranja);
    padding-top: 10px;
    padding-bottom: 10px;
}

.bloque {
    display: flex;
    flex-direction: row;
    padding: 0px;
    padding-left: 20px;
    align-items: center;
}

.icono {
    display: inline-block;
    width: 32px;
    height: 32px;
    padding-right: 20px;
}

.informacion {
    display: flex;
    flex-direction: column;
    width: auto;

}

ul, li {
    color: var(--color-negro);
}

.links {
    text-decoration: none;
    color: var(--color-azul);
}

.links:hover {
    text-decoration: underline;
}

#map {
    background-color: #CCC;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

label {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
}

input, textarea {
    display: block;
    padding: 15px;
    width: 100%;
    border-radius: 7px;
    border: 0px;
    outline: 1px solid #BBB;
    box-sizing: border-box;
    background-color: #CCC;
}

input[type="button"] {
    cursor: pointer;
    padding: 20px;
    margin-top: 15px;
    background-color: #444;
    color: #FFF;
}

input[type="button"]:hover {
    background-color: #333;
    color: #FFF;
}

#resultado {
    display: block;
    margin-top: 10px; 
    background-color: #DEF;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    border: 1px dashed #999;
}

#resultado:empty {
    display: none;
}

@media (max-width: 1000px) {
    body {font-size: 14px}
    .boton {font-size: 14px}
    .secciones {flex-direction: column;}
}