/*
Theme Name: Josiel Alves Landing Page Theme
Theme URI: https://josielalves.com/
Author: Manus AI
Author URI: https://www.google.com/
Description: Tema WordPress personalizado para a landing page de Josiel Alves - Criador Digital. Design moderno com cores azul-preto e mascote gato tech.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-header, custom-menu, featured-images, post-formats, rtl-language-support, sticky-post, translation-ready, responsive-layout, one-column, portfolio
Text Domain: josielalves-theme
*/

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 4px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    overflow: hidden;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    to { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.site-description {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.section {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.section:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.section-title {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 2px;
}

.project-item, .blog-item, .social-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-item:hover, .blog-item:hover, .social-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

.item-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.item-emoji {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 60px 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    margin: 40px 0;
    border: 2px dashed rgba(0, 212, 255, 0.3);
}

.coming-soon h2 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.coming-soon p {
    color: #b0b0b0;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: 60px;
}

.site-footer p {
    color: #666;
    font-size: 0.9rem;
}

/* WordPress específico */
.wp-block-group {
    margin: 0;
}

.entry-content {
    margin: 0;
}

.entry-content p {
    margin-bottom: 1em;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .site-description {
        font-size: 1.1rem;
    }
    
    .sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section {
        padding: 20px;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 1s ease-in;
}

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }

/* WordPress admin bar compatibility */
.admin-bar .site-header {
    padding-top: 92px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        padding-top: 106px;
    }
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

