
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

/* Cabecera */
.header {
    text-align: center;
    position: relative;
}

.logo {
    height:40px;
    display: flex;
    justify-content: flex-start;
    margin:10px;
}

.hero {
    background: url(vitoria.png) center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Botones */
.nav-buttons {
    margin: 20px 0;
}

.nav-buttons button {
    background-color: #0078D7;
    color: white;
    border: none;
    padding: 12px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-buttons button:hover {
    background-color: #005a9e;
}

/* Secciones */
.section {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0078D7;
}

.section iframe {
    width: 80%;
    height: 1400px;
    border: 1px solid #ccc;
    border-radius: 8px;
    align-self: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    color:#505050
}
