/* Variables */
:root {
    --primary-color: #800020; /* Burgundy */
    --accent-color: #D4AF37; /* Gold */
    --background-color: #000000; /* Black */
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #333;
    line-height: 1.6;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background-color: #333;
    padding-top: 1rem;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #555;
}

/* Main Content */
.main-content {
    margin-left: 220px;
    padding: 2rem;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background-color: #800020; /* Burgundy */
    color: white;
    text-align: center;
    padding: 1rem 0; /* Espaciado reducido */
    border-bottom: 2px solid #a83232; /* Línea sutil para separar */
}

.header h1 {
    font-size: 2rem; /* Tamaño reducido */
    margin: 0;
    font-weight: 600;
}

.header h2 {
    font-size: 1.2rem; /* Subtítulo más pequeño */
    font-weight: 400;
    margin: 0.5rem 0 0 0;
}

.agenda-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
}


/* Content Section */
.content {
    width: calc(100% - 100px);
    margin: 2rem auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1rem 0;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.content img {
    width: 300px;
    height: auto;
    border-radius: 0.5rem;
}

.content-text {
    flex: 1;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    text-align: center;
}


/* Contact Button */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #25D366; /* Verde de WhatsApp */
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #128C7E;
}

.button-icon {
    width: 24px;
    height: 24px;
}


/* Footer */
.footer {
    text-align: center;
    padding: 0.3rem 0; /* Espaciado reducido */
    background-color: #333;
    color: white;
    font-size: 0.8rem; /* Texto más pequeño */
    border-top: 1px solid #555; /* Línea superior sutil */
    line-height: 1.2; /* Espaciado reducido entre líneas */
    margin-top: auto; /* Asegura que esté al final */    
}

.footer a {
    color: #25D366; /* Verde WhatsApp o color personalizado */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer a:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    .nav-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-link {
        padding: 0.5rem;
    }

    .main-content {
        margin-left: 0;
    }

    .content {
 		width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .content img {
        width: 95%;
        height: auto;
        margin: 0 auto;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    z-index: 1001;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

