/* Reset e Base */
:root {
    --primary: #8251a6;
    --primary-light: #9362b4;
    --primary-lighter: #9366cf;
    --secondary: #a068b8;
    --accent: #d67db2;
    --light: #e7e2ee;
    --dark: #2d2d2d;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    margin-left: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.contact-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    overflow: hidden;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Book */
.featured-book {
    background-color: var(--white);
}

.book-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.book-text {
    flex: 1;
}

.book-cover {
    flex: 1;
    text-align: center;
}

.book-img {
    background: transparent !important;
    box-shadow: none !important; /* Remove totalmente a sombra */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2)); /* Sombra apenas no conteúdo */
    max-width: 80%; /* Controla o tamanho */
    display: block;
    margin: 0 auto;
    width: 800px;
}

.book-img:hover {
    transform: scale(1.05);
}

.book-description {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--light), var(--white));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    text-align: center;
}

.author-img {
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 5px 15px rgba(146, 84, 187, 0.3)); /* Sombra roxa sutil */
    border: none !important;
    width: 350px; /* Tamanho fixo para consistência */
    height: auto;
    display: block;
    margin: 0 auto;
}

.author-img:hover {
    transform: scale(1.03);
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Blog Section */
.blog {
    background-color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-header img {
    transform: scale(1.1);
}

.post-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--dark);
}

.author {
    margin-right: 10px;
    font-weight: 600;
    color: var(--primary);
}

.date {
    color: var(--gray);
}

.card-body {
    padding: 20px;
}

.post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.post-excerpt {
    color: var(--gray);
    margin-bottom: 15px;
}

.card-footer {
    padding: 0 20px 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .book-content, .about-content {
        flex-direction: column;
    }
    
    .book-text, .about-text {
        order: 2;
        text-align: center;
    }
    
    .book-cover, .about-img {
        order: 1;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-link {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-all {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* Página Sobre - Estilos Específicos */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.about-hero .hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Seção Introdução */
.about-intro {
    padding: 100px 0;
    background-color: var(--white);
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 50px;
}

.profile-img {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.author-profile {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(146, 84, 187, 0.3));
}

.img-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--primary);
    border-radius: 10px;
    z-index: 1;
}

.profile-text {
    flex: 1;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark);
}

/* Seção Jornada */
.about-journey {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light), var(--white));
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 20px 0 40px;
}

.journey-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.journey-text {
    flex: 1;
}

.journey-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.journey-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.book-stack {
    position: relative;
    width: 200px;
    height: 250px;
}

.book {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-light), var(--primary-lighter));
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.book-1 {
    width: 180px;
    height: 230px;
    transform: rotate(5deg);
    z-index: 3;
}

.book-2 {
    width: 180px;
    height: 230px;
    transform: rotate(-5deg);
    z-index: 2;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    top: 10px;
    left: 10px;
}

.book-3 {
    width: 180px;
    height: 230px;
    transform: rotate(0deg);
    z-index: 1;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    top: 20px;
    left: -10px;
}

/* Seção Habilidades */
.about-skills {
    padding: 100px 0;
    background-color: var(--white);
}

.skills-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.skills-text {
    flex: 1;
}

.skills-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.skills-image {
    flex: 1;
    position: relative;
    height: 300px;
}

.skill-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.icon i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.icon-2 {
    bottom: 0;
    left: 20%;
    z-index: 2;
}

.icon-3 {
    bottom: 0;
    right: 20%;
    z-index: 2;
}

.icon:hover {
    transform: translateY(-10px) scale(1.1);
    background: linear-gradient(to bottom right, var(--primary), var(--accent));
    color: var(--white);
}

/* Responsividade */
@media (max-width: 992px) {
    .about-profile, .journey-content, .skills-content {
        flex-direction: column;
    }
    
    .profile-img {
        margin-bottom: 40px;
    }
    
    .about-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .book-stack {
        margin-top: 40px;
    }
    
    .skill-icons {
        height: 250px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .icon {
        width: 90px;
        height: 90px;
        font-size: 0.8rem;
    }
    
    .icon i {
        font-size: 1.8rem;
    }
}
/* Página Livros - Estilos Específicos */
.books-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.books-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.books-hero .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Seções dos Livros */
.book-section {
    padding: 80px 0;
}

.book-section.kingdom {
    background-color: var(--white);
}

.book-section.excidium {
    background: linear-gradient(to bottom, var(--light), var(--white));
}

.book-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.book-cover {
    flex: 1;
    position: relative;
    text-align: center;
}

.book-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    background: transparent !important;
}

.book-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.book-details {
    flex: 1;
}

.book-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray);
}

.meta-item i {
    color: var(--primary);
}

.book-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-kingdom {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin-top: 20px;
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(214, 125, 178, 0.1);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 20px 0;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 992px) {
    .book-card {
        flex-direction: column;
        gap: 40px;
    }
    
    .book-cover {
        max-width: 300px;
    }
    
    .books-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .books-hero {
        height: 50vh;
    }
    
    .books-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .book-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .books-hero .hero-title {
        font-size: 2rem;
    }
    
    .book-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .coming-soon {
        font-size: 0.9rem;
    }
}
/* Página Serviços - Estilos Específicos */
.services-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.services-hero .hero-title {
    font-size: 3.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Seção Serviços */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-title span {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    margin-top: 5px;
    font-weight: 400;
}

.service-description {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--gray);
}

/* Seção CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--light);
    color: var(--primary);
}

/* Responsividade */
@media (max-width: 992px) {
    .services-hero .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
    }
    
    .services-hero .hero-title {
        font-size: 2.3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .services-hero .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}
/* Página Contato - Estilos Específicos */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Seção Formulário */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group, .textarea-group, .select-group {
    position: relative;
}

.input-group input, .textarea-group textarea, .select-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.input-group input:focus, .textarea-group textarea:focus, .select-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(130, 81, 166, 0.2);
}

.textarea-group textarea {
    min-height: 150px;
    resize: vertical;
}

.select-group select {
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238251a6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.input-group label, .textarea-group label, .select-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.textarea-group textarea:focus + label,
.textarea-group textarea:not(:placeholder-shown) + label,
.select-group select:focus + label,
.select-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-message {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Seção Avaliações */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light), var(--white));
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-light);
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    margin: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.client-rating {
    color: var(--accent);
    margin-top: 5px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    line-height: 1.7;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .form-group.double {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}
/* Página do Blog - Excidium */
.blog-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.blog-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.post-date i {
    margin-right: 8px;
}

.post-author {
    font-style: italic;
    opacity: 0.9;
}

.author-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Conteúdo do Post */
.blog-content {
    padding: 60px 0;
    background-color: var(--white);
}

.post-article {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.post-article p {
    margin-bottom: 25px;
}

.post-article em {
    font-style: italic;
    color: var(--primary);
}

.blog-signature {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.post-views {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    color: var(--gray);
    font-size: 0.9rem;
}

.post-views i {
    color: var(--primary);
}

/* Responsividade */
@media (max-width: 992px) {
    .blog-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 1.8rem;
    }
    
    .post-article {
        font-size: 1rem;
    }
}
/* Estilos adicionais para o post Escrever Ficcao */
.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 20px;
    position: relative;
    padding-left: 15px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.author-reference {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(130, 81, 166, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.reference-image {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.reference-text strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.reference-text em {
    font-style: italic;
    color: var(--secondary);
}

/* Responsividade para referência de autor */
@media (max-width: 768px) {
    .author-reference {
        flex-direction: column;
        text-align: center;
    }
    
    .reference-text {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .reference-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }
}
/* Estilos específicos para o post sobre personagens */
.intro-box {
    background: rgba(130, 81, 166, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.speech-bubble {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    align-items: flex-start;
}

.speech-bubble.right {
    flex-direction: row-reverse;
}

.bubble-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
}

.bubble-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bubble-content {
    background: var(--light);
    padding: 15px 20px;
    border-radius: 12px;
    position: relative;
    flex-grow: 1;
}

.bubble-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: var(--light);
    right: 100%;
    top: 20px;
}

.speech-bubble.right .bubble-content::after {
    left: 100%;
    right: auto;
    border-right-color: transparent;
    border-left-color: var(--light);
}

.warning-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box i {
    color: #ffc107;
    font-size: 1.5rem;
}

.character-evolution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    gap: 10px;
}

.evolution-stage {
    text-align: center;
    flex: 1;
}

.stage-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.evolution-arrow i {
    color: var(--primary);
    font-size: 1.5rem;
}

.character-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.character-card {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.character-card:hover {
    transform: translateY(-5px);
}

.character-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.character-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.table-box {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.table-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.character-sheet {
    list-style: none;
}

.character-sheet li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.character-sheet strong {
    color: var(--primary);
}

.placeholder {
    color: var(--gray);
    font-style: italic;
}

.highlight-box {
    background: linear-gradient(to right, var(--primary-light), var(--primary-lighter));
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .character-evolution {
        flex-direction: column;
        gap: 20px;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
    }
    
    .speech-bubble, .speech-bubble.right {
        flex-direction: column;
    }
    
    .bubble-content::after {
        display: none;
    }
    
    .bubble-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .character-types {
        grid-template-columns: 1fr;
    }
    
    .table-box {
        padding: 15px;
    }
}
/* Página Blog - Estilos Específicos */
.blog-list-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.blog-list-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-list-hero .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}
/* Página Blog - Estilos Específicos */
.blog-list-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.blog-list-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-list-hero .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Seção Blog Posts */
.blog-posts {
    padding: 80px 0;
    background-color: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta-container {
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.post-meta span {
    white-space: nowrap;
}

.post-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.post-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.post-footer {
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
}

.read-more:hover i {
    transform: translateX(5px);
}

.coming-soon {
    text-align: center;
    padding: 30px;
    background: rgba(130, 81, 166, 0.05);
    border-radius: 10px;
    margin-top: 30px;
}

.coming-soon i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 992px) {
    .blog-list-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-list-hero {
        height: 40vh;
    }
    
    .blog-list-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .blog-list-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-list-hero .hero-title {
        font-size: 2rem;
    }
    
    .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .post-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
    margin: 0 15px 10px 0;
    flex-grow: 1;
    max-width: 800px;
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

#accept-cookies {
    background: white;
    color: var(--primary);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}
/* Página Política de Privacidade - Estilos Específicos */
.privacy-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.privacy-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.privacy-hero .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.privacy-content {
    padding: 80px 0;
    background-color: var(--white);
}

.privacy-section {
    margin-bottom: 60px;
}

.privacy-section h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.privacy-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--dark);
}

.privacy-list {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-list li {
    margin-bottom: 15px;
    color: var(--dark);
}

.info-box {
    background: rgba(130, 81, 166, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.right-card {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.right-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.update-info {
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
}

.contact-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--light);
}

.contact-methods {
    margin-top: 30px;
}

.contact-methods a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
}
/* Seção de Listagem de Posts */
.posts-list {
    padding: 60px 0;
    background-color: var(--light);
}

.list-container {
    max-width: 800px;
    margin: 0 auto;
}

.list-post {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(130, 81, 166, 0.1);
    transition: all 0.3s ease;
}

.list-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.list-post:hover {
    transform: translateX(5px);
}

.list-post-image {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.list-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.list-post:hover .list-post-image img {
    transform: scale(1.05);
}

.list-post-content {
    flex: 1;
}

.post-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.list-post .post-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.list-post .post-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.list-post .post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

.list-post .post-meta .author {
    color: var(--primary);
    font-weight: 600;
}

.list-post .post-meta .date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-number, .next-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-number.active {
    background: var(--primary);
    color: var(--white);
}

.page-number:hover:not(.active), .next-page:hover {
    background: var(--primary-light);
    color: var(--white);
}

.next-page {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
    gap: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .list-post {
        flex-direction: row;
        gap: 15px;
    }
    
    .list-post-image {
        width: 40%;
        height: 200px;
    }
    
    .list-post .post-title {
        font-size: 1rem;
        margin-bottom: 1px;
    }
}

@media (max-width: 576px) {
    .pagination {
        gap: 5px;
    }
    
    .page-number, .next-page {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .next-page {
        padding: 0 10px;
    }
}