<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #004d40;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


header h1 {
    font-size: 1.5rem;
    margin-left: 15px;
    flex-grow: 1;
}

header .header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .header-icons a img {
    width: 28px;
    height: 28px;
}
.logo {
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 4px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* TamaÃ±o mayor en PC */
@media (min-width: 768px) {
    .logo {
        height: 90px;
        border: 3px solid #aaa;
        padding: 6px;
    }
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: #00796b;
    margin: 0;
    padding: 0.5rem 0;
}
nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
main {
    padding: 1rem;
}
#carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    overflow: hidden;
    margin-top: 20px;
}

#carousel img {
    display: none;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 1rem;
}

.redes {
    margin-top: 1rem;
}
.redes img {
    width: 32px;
    height: 32px;
    margin: 0 10px;
}
.botones-enlaces {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.botones-enlaces a {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    transition: background-color 0.3s ease;
}

.botones-enlaces a:hover {
    background-color: #0056b3;
}
.btn-turno, .btn-intranet {
    text-decoration: none;
    padding: 10px 16px;
    margin: 5px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    background-color: #007BFF;
    transition: background-color 0.3s ease;
}

.btn-turno:hover, .btn-intranet:hover {
    background-color: #0056b3;
}

/* Ocultar en mÃ³vil los del header */
.botones-header {
    display: none;
}

/* Mostrar en mÃ³vil los del main */
.botones-main {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* Para pantallas de PC */
@media (min-width: 768px) {
    .botones-header {
        display: flex;
        gap: 10px;
    }
    .botones-main {
        display: none;
    }
}
#carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
}

#carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#carousel img {
    display: none;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0 12px;
    cursor: pointer;
    z-index: 1;
    transition: background 0.3s;
    border-radius: 8px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
.carousel-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}
a,
a:visited,
a:hover,
a:active {
    color: white;
    text-decoration: none; /* si no quieres subrayado */
}
</pre></body></html>