/* Pai Wesley Plugin CSS - WordPress Compatible */

/* Reset e Base para o plugin */
.pai-wesley-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

.pai-wesley-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.pai-wesley-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.pai-wesley-nav-menu a:hover {
    color: #ffd700;
}

.pai-wesley-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.pai-wesley-nav-menu a:hover::after {
    width: 100%;
}

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

.pai-wesley-hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.pai-wesley-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pai-wesley-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.pai-wesley-hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #ccc;
}

.pai-wesley-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000 !important;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pai-wesley-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    color: #000 !important;
}

/* Sections */
.pai-wesley-section {
    padding: 5rem 0;
    position: relative;
}

.pai-wesley-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* About Section */
.pai-wesley-about {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
}

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

.pai-wesley-about-image {
    text-align: center;
}

.pai-wesley-about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pai-wesley-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.pai-wesley-about-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pai-wesley-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pai-wesley-stat-item {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.pai-wesley-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    display: block;
}

.pai-wesley-stat-label {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Video Section */
.pai-wesley-video-section {
    background: rgba(255, 215, 0, 0.1);
    color: white;
    padding: 5rem 0;
}

.pai-wesley-video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pai-wesley-video-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.pai-wesley-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.pai-wesley-video-wrapper:hover::before {
    left: 100%;
}

.pai-wesley-video-wrapper video {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pai-wesley-video-description {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.pai-wesley-video-cta {
    margin-top: 2rem;
}

/* Services Section */
.pai-wesley-services {
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.pai-wesley-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pai-wesley-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pai-wesley-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.pai-wesley-service-card:hover::before {
    left: 100%;
}

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

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

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

.pai-wesley-service-card p {
    line-height: 1.6;
    color: #ccc;
}

/* Testimonials */
.pai-wesley-testimonials {
    background: rgba(255, 215, 0, 0.05);
    color: white;
}

.pai-wesley-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pai-wesley-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    position: relative;
}

.pai-wesley-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ffd700;
    opacity: 0.3;
}

.pai-wesley-testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pai-wesley-testimonial-author {
    font-weight: bold;
    color: #ffd700;
}

/* Contact Section */
.pai-wesley-contact {
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

.pai-wesley-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.pai-wesley-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pai-wesley-contact-item i {
    color: #ffd700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.pai-wesley-contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.pai-wesley-form-group {
    margin-bottom: 1.5rem;
}

.pai-wesley-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 500;
}

.pai-wesley-form-group input,
.pai-wesley-form-group textarea,
.pai-wesley-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.pai-wesley-form-group input:focus,
.pai-wesley-form-group textarea:focus,
.pai-wesley-select:focus {
    outline: none;
    border-color: #ffd700;
}

.pai-wesley-form-group input::placeholder,
.pai-wesley-form-group textarea::placeholder {
    color: #ccc;
}

.pai-wesley-submit-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pai-wesley-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* WhatsApp Float Button */
.pai-wesley-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pai-wesley-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes 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);
    }
}

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

.pai-wesley-social-links {
    margin-bottom: 1rem;
}

.pai-wesley-social-links a {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.pai-wesley-social-links a:hover {
    color: #ffed4e;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pai-wesley-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pai-wesley-nav-menu {
        display: none;
    }
    
    .pai-wesley-hero h1 {
        font-size: 2.5rem;
    }
    
    .pai-wesley-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .pai-wesley-about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pai-wesley-contact-content {
        grid-template-columns: 1fr;
    }
    
    .pai-wesley-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pai-wesley-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pai-wesley-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pai-wesley-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pai-wesley-video-wrapper {
        padding: 1rem;
    }
    
    .pai-wesley-video-wrapper video {
        max-width: 100%;
    }
    
    .pai-wesley-video-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pai-wesley-container {
        padding: 0 1rem;
    }
    
    .pai-wesley-hero h1 {
        font-size: 2rem;
    }
    
    .pai-wesley-section-title {
        font-size: 2rem;
    }
    
    .pai-wesley-stats {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.pai-wesley-scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.pai-wesley-scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* WordPress Admin Bar Compatibility */
.admin-bar .pai-wesley-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .pai-wesley-header {
        top: 46px;
    }
}

/* Shortcode Styles */
.pai-wesley-whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white !important;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pai-wesley-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}