/* Plugin Pai Wesley - Estilos com prefixo pw- para evitar conflitos */

#pai-wesley-site {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
}

/* Header */
.pw-header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.pw-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.pw-logo {
    color: #ffd700 !important;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pw-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.pw-nav-menu a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

.pw-nav-menu a:hover {
    color: #ffd700 !important;
}

/* Hero Section */
.pw-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    padding: 2rem;
}

.pw-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: #ffd700;
}

.pw-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Vídeo de Apresentação */
.pw-video-container {
    margin: 2rem 0;
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffd700;
}

.pw-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.pw-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e !important;
    padding: 15px 30px;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.pw-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #1a1a2e !important;
}

/* Seções principais */
.pw-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pw-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Serviços */
.pw-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pw-service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.pw-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.pw-service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.pw-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.pw-service-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Sobre */
.pw-about {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.pw-about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.pw-about-image {
    text-align: center;
}

.pw-about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.pw-about-text {
    color: white;
}

.pw-about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.pw-about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Contato */
.pw-contact {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.pw-contact-info-center {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pw-contact-info-center h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pw-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    justify-content: center;
}

.pw-contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 20px;
}

/* Botão WhatsApp Flutuante */
.pw-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.pw-whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.pw-whatsapp-float i {
    margin-top: 16px;
}

/* Animação pulsante para o WhatsApp */
@keyframes pw-whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pw-whatsapp-float {
    animation: pw-whatsapp-pulse 2s infinite;
}

/* Footer */
.pw-footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.pw-footer p {
    opacity: 0.8;
    margin: 0.5rem 0;
}

/* Efeitos especiais */
.pw-mystical-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: pw-pulse 2s infinite;
}

@keyframes pw-pulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

/* Animações */
@keyframes pw-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pw-service-card,
.pw-about,
.pw-contact {
    animation: pw-fadeInUp 0.6s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .pw-nav-menu {
        display: none;
    }
    
    .pw-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pw-hero-content p {
        font-size: 1.1rem;
    }
    
    .pw-video-container {
        max-width: 90%;
        margin: 1.5rem 0;
    }
    
    .pw-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pw-about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pw-contact-info-center {
        text-align: left;
        padding: 0 1rem;
    }
    
    .pw-contact-item {
        justify-content: flex-start;
    }
    
    .pw-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .pw-section {
        padding: 60px 1rem;
    }
}

/* Ajustes para WordPress */
#pai-wesley-site * {
    box-sizing: border-box;
}

#pai-wesley-site ul {
    list-style: none;
}

#pai-wesley-site a {
    text-decoration: none;
}

#pai-wesley-site h1, 
#pai-wesley-site h2, 
#pai-wesley-site h3 {
    margin: 0;
    padding: 0;
}