/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #3498db;
}
.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* ===========================
   HERO SECTION - MELHORADA
   =========================== */

.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 40px;
    margin-bottom: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 0 0 10px 0;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a8dadc;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    max-width: 500px;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #1a1a2e;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Responsividade Hero */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        margin-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Seção de Destaque para Neurodiversidade */
.neuro-highlight {
    background-color: #f0f4f8; /* Um fundo suave para destaque */
    padding: 80px 0;
}
.neuro-highlight .container {
    display: flex;
    align-items: center;
    gap: 40px; /* Espaçamento entre texto e imagem */
    flex-wrap: wrap; /* Permite quebrar em telas menores */
}
.neuro-content {
    flex: 1;
    min-width: 300px; /* Garante que o conteúdo não fique muito estreito */
}
.neuro-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.2;
}
.neuro-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}
.neuro-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.neuro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* Ajuste para o botão CTA dentro do neuro-highlight */
.neuro-highlight .cta-button {
    background-color: #3498db; /* Cor primária */
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}
.neuro-highlight .cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}


/* Categories */
.categories {
    padding: 80px 0;
    background-color: #fff;
}
.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.category-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(30px);
}
.category-card:hover {
    transform: translateY(-5px);
}
.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
/* Gallery */
.gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.art-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}
.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.art-image {
    width: 100%;
    height: 350px; /* Aumentado para mostrar escultura inteira sem corte */
    object-fit: contain; /* Preserva proporção, sem crop; adiciona padding se necessário para beleza */
    background-color: #f8f9fa; /* Fundo sutil se imagem não preencher */
}
.art-content {
    padding: 1.5rem;
}
.art-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}
.art-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1rem;
}
.art-description {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.5;
    max-height: 120px; /* Limita a ~3 linhas para balancear com imagem */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.art-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
}

/* NOVOS ESTILOS PARA OS BOTÕES DA GALERIA */
.art-buy {
    background-color: #3498db; /* Cor primária */
    color: #fff;
    border: 1px solid #3498db;
    padding: 0.7rem 1.2rem; /* Ajuste de padding */
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px; /* Mantém 5px para contexto da galeria */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    flex: 1;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.art-buy:hover {
    background-color: #2980b9; /* Tom mais escuro no hover */
    border-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.art-buy:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.art-fullview {
    background-color: transparent; /* Fundo transparente */
    color: #555; /* Cor de texto mais neutra */
    border: 1px solid #ccc; /* Borda sutil */
    padding: 0.7rem 1.2rem; /* Padding igual ao botão de compra */
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    flex: 1;
    text-align: center;
    cursor: pointer;
}
.art-fullview:hover {
    background-color: #f0f0f0; /* Fundo levemente cinza no hover */
    border-color: #bbb;
    color: #333;
    transform: translateY(-1px);
}
.art-fullview:active {
    transform: translateY(0);
    background-color: #e0e0e0;
}
/* FIM DOS NOVOS ESTILOS PARA OS BOTÕES DA GALERIA */


/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease-out;
}
.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}
.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}
.close-lightbox:hover {
    color: #fff;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Ebook Highlight */
.ebook-highlight {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.ebook-btn {
    display: block;
    margin: 0 auto 2rem;
    max-width: 300px;
}
.ebook-image {
    width: 200px;
    height: 280px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.ebook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ebook-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.ebook-info p {
    margin-bottom: 1rem;
    color: #555;
}
.ebook-arrow {
    color: #3498db;
    font-weight: 600;
}
/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.post-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.post-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}
.post-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.post-excerpt {
    color: #555;
    margin-bottom: 1.5rem;
}
.read-more {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 1rem;
}
.read-more:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    text-decoration: none;
}
/* Premium CTA */
.premium-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.premium-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.premium-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}
/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .category-grid, .gallery-grid, .posts-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-content {
        width: 95vw;
        height: 95vh;
        padding: 10px;
    }
    .art-buttons {
        flex-direction: column;
    }
    .neuro-highlight .container {
        flex-direction: column; /* Empilha o conteúdo em telas pequenas */
        text-align: center;
    }
    .neuro-content {
        order: 2; /* Coloca o texto abaixo da imagem em mobile */
    }
    .neuro-image {
        order: 1; /* Coloca a imagem acima do texto em mobile */
        margin-bottom: 2rem;
    }
    .neuro-content h2 {
        font-size: 2.2rem;
    }
    .neuro-content p {
        font-size: 1rem;
    }
}
/* Background SVG pattern (opcional, para textura sutil) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}
