body {
    margin: 0;
    background: #ffffff;
}
.header {
    background: #fff;
    color: #222;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    border-bottom: 2px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 529px;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 38px;
    flex-grow: 1;
    justify-content: flex-end;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #b30000;
    background: #fff;
    object-fit: cover;
    margin-right: 5px;
}
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-name {
    margin: 0;
    font-size: 1.45em;
    font-family: 'Times New Roman', serif;
    color: #b30000;
    font-weight: bold;
    letter-spacing: 1px;
}
.site-desc {
    margin: 0;
    font-size: 1em;
    color: #666;
    font-family: 'Segoe UI', Arial, sans-serif;
}

nav {
    display: flex;
    align-items: center;
}
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 38px;
}
.nav-menu a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08em;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: none;
}
.nav-menu a:hover {
    color: #b30000;
    background: #ffd7d7;
}

.bienvenida-hero {
    background: url('../imagenes/cochi.jpg') center center/cover no-repeat;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bienvenida-overlay {
    background: rgba(0,0,0,0.35);
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
}
.bienvenida-overlay h2 {
    font-size: 2.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 8px #000000;
}
.bienvenida-overlay h2 span {
    color: #ffffff;
    text-shadow: 2px 2px 8px #000000;
}
.bienvenida-overlay p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 6px #b30000;
}
.footer {
    background: #111;
    color: #fff;
    margin-top: 40px;
    font-size: 1em;
    letter-spacing: 0.5px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 36px 8vw 18px 8vw;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1 1 320px;
    min-width: 260px;
    margin-bottom: 18px;
}
.footer-column h3 {
    font-size: 1.18em;
    font-weight: bold;
    margin-bottom: 18px;
    color: #ffd700;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-column ul li a:hover {
    color: #ffd700;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}
.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}
.social-icons a img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}
.social-icons a:hover img {
    filter: brightness(0) invert(0.7) sepia(1) hue-rotate(-40deg) saturate(5);
}
.footer-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: #fff;
    object-fit: cover;
    margin-top: 10px;
}
.footer-bottom {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 14px 0 10px 0;
    font-size: 0.98em;
}
.footer-bottom a {
    color: #ffd700;
    text-decoration: underline;
    margin: 0 6px;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #fff;
}
@media (max-width: 900px) {
    .header {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2vw;
        min-height: unset;
    }
    .header-left, .header-center, .header-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: center;
    }
    .header-left {
        gap: 10px;
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    .header-center {
        margin-bottom: 10px;
        justify-content: center; 
        position: static; 
        left: 0;
    }
    .header-right {
        margin-left: 0;
        gap: 10px;
        justify-content: flex-end;
    }
    .dashboard {
        margin-left: 10px;
    }
}
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2vw;
    }
    .header-left, .header-center, .header-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nav-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: flex-start;
    }
    .dashboard {
        width: 100%;
        margin: 10px 0 0 0;
        display: flex;
        justify-content: flex-start;
    }
    .dashboard-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .dashboard-menu {
        position: static !important;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        margin-top: 8px;
        width: 100%;
        min-width: unset;
        z-index: 100;
        display: none;
        flex-direction: column;
    }
    .dashboard-menu.show {
        display: flex !important;
    }
    .dashboard-menu a {
        color: #b30000;
        padding: 12px 18px;
        text-align: left;
        border-bottom: 1px solid #eee;
        font-size: 1.1em;
    }
    .dashboard-menu a:last-child {
        border-bottom: none;
    }
}
.dashboard-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-width: 180px;
    z-index: 100;
    flex-direction: column;
}
.dashboard-menu.show {
    display: flex !important;
}
.dashboard-menu a {
    color: #b30000;
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 1.05em;
    text-decoration: none;
    transition: background 0.2s;
}
.dashboard-menu a:hover {
    background: #ffd7d7;
}
