/* blogs.css - Estilos exclusivos para páginas de blog individuales */
:root {
    --color-pink: #FFB6C1;
    --color-purple: #9370DB;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --gradient-primary: linear-gradient(to bottom, var(--color-pink), var(--color-purple));
    --font-italiana: 'Italiana', serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-montserrat);
    line-height: 1.6;
    color: var(--color-black);
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    overflow-x: hidden;
}
header {
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: all 0.3s ease;
    background: var(--color-pink)!important;
    height: 100px;
}


nav {
    width: 100%;
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 0.5rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

nav a:hover {
    color: var(--color-purple);
}

.logo {
    padding: 0.5rem;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}



.blog-page-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(147,112,219,0.07);
}

.blog-page-article-header h1 {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: #a05fa5;
    margin-bottom: 0.5rem;
    text-align: left;
}

.blog-page-date {
    color: #9370db;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-page-article img {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(160,95,165,0.08);
}

.blog-page-article section {
    margin-bottom: 2.5rem;
}

.blog-page-article h2 {
    color: #6d3e7b;
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.blog-page-article p, .blog-page-article ul {
    font-size: 1.08rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.blog-page-article ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-page-article li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.blog-page-article-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    color: #9370db;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 600px) {
    .blog-page-main {
        padding: 1.2rem 0.2rem 2rem 0.2rem;
        border-radius: 0.7rem;
        width: 80%;
    }
        .blog-page-article-header h1 {
        font-size: 1.5rem;
    }
    .blog-page-article h2 {
        font-size: 1.1rem;
    }
} 