@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Are+You+Serious&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Love+Light&display=swap');

:root {
    --background-color:#25173d;
    --text-color: #E1E1E1;
    --primary-color: #211437;
    --secondary-color: #888888;
    --tag-color: #DA005B;
    --accent-color: #6c5ce7;
    --font-hover: "Are You Serious", cursive;
    --sidebar-width: 250px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}  

body {
    background-image: url();
    Background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    display: flex;
    min-height: 100vh;
    padding: 0;
    cursor: url('fotos/aranha-cruz40.png'), auto;
    
}

/* Barra lateral */
.barra-lateral {
    background-color: var(--primary-color);
    width: var(--sidebar-width);
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: transform 0.3s ease;
    gap: 2rem;
}


.perfil-img {
    width: 200px;
    height: 200px;
    object-fit:cover;
    border-radius: 5%;
    border: 2px solid var(--accent-color)
    
}


nav {
    width:100%;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style-type: none;
    width: 100%;
}

.nav-links li {
    width: 100%;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: none;
    width: 100%;
}

.nav-links li a:hover {
    background-color: var(--accent-color);
    color: white;
    font-family: var(--font-hover);
    font-size: 30px;
    transition: none;
    transform: scale(1.1);
    
}

.nav-links li a i {
    font-size: 14px;
    width: 25px;
    text-align: center;
}
.icones{
    width:45px ;
    height:45px ;
}

/* Conteúdo principal */
.conteudo-main{
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 40px;
}

.blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 25px;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;

}

.blog-header p {
    color: var(--secondary-color);
    font-size: 14px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.post-card {
    background: rgba(37, 23, 61, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: none;
}

.post-card:hover {
    transform: translateY(-5px);
    transition: none;
}

.post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-tag {
    background-color: var(--tag-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.post-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
}

.post-excerpt {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Menu toggle para mobile */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .barra-lateral {
        transform: translateX(-100%);
        width: 70%;
    }
    
    .barra-lateral.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
        padding-top: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Are+You+Serious&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Love+Light&display=swap');

:root {
    --background-color:#25173d;
    --text-color: #E1E1E1;
    --primary-color: #211437;
    --secondary-color: #888888;
    --tag-color: #DA005B;
    --accent-color: #6c5ce7;
    --font-hover: "Are You Serious", cursive;
    --sidebar-width: 250px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}  

body {
    background-image: url();
    Background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    display: flex;
    min-height: 100vh;
    padding: 0;
    cursor: url('fotos/aranha-cruz40.png'), auto;
    
}

/* Barra lateral */
.barra-lateral {
    background-color: var(--primary-color);
    width: var(--sidebar-width);
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: transform 0.3s ease;
    gap: 2rem;
}


.perfil-img {
    width: 200px;
    height: 200px;
    object-fit:cover;
    border-radius: 5%;
    border: 2px solid var(--accent-color)
    
}


nav {
    width:100%;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style-type: none;
    width: 100%;
}

.nav-links li {
    width: 100%;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: none;
    width: 100%;
}

.nav-links li a:hover {
    background-color: var(--accent-color);
    color: white;
    font-family: var(--font-hover);
    font-size: 30px;
    transition: none;
    transform: scale(1.1);
    
}

.nav-links li a i {
    font-size: 14px;
    width: 25px;
    text-align: center;
}
.icones{
    width:45px ;
    height:45px ;
}

/* Conteúdo principal */
.conteudo-main{
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 40px;
}

.blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 25px;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;

}

.blog-header p {
    color: var(--secondary-color);
    font-size: 14px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.post-card {
    background: rgba(37, 23, 61, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: none;
}

.post-card:hover {
    transform: translateY(-5px);
    transition: none;
}

.post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-tag {
    background-color: var(--tag-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.post-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
}

.post-excerpt {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Menu toggle para mobile */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .barra-lateral {
        transform: translateX(-100%);
        width: 70%;
    }
    
    .barra-lateral.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
        padding-top: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}