/* Landing Page LP1 - Pai Wesley - Estilos Otimizados para Conversão */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#pai-wesley-lp1 {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.lp1-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.lp1-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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;
    opacity: 0.1;
    z-index: 1;
}

.lp1-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0;
}

.lp1-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.lp1-highlight {
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.lp1-subheadline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Vídeo Hero */
.lp1-video-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid #ffd700;
}

.lp1-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.lp1-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 215, 0, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.lp1-video-container:hover .lp1-video-overlay {
    opacity: 1;
}

/* Botões CTA */
.lp1-cta-buttons {
    margin-top: 2rem;
}

.lp1-btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #25d366, #20ba5a);
    color: white !important;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.lp1-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.lp1-btn-primary:hover::before {
    left: 100%;
}

.lp1-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white !important;
}

.lp1-btn-primary i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.lp1-urgency {
    margin-top: 1rem;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Seções */
.lp1-section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    position: relative;
}

.lp1-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

/* Benefícios */
.lp1-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.lp1-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.lp1-benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lp1-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.lp1-benefit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.lp1-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 600;
}

.lp1-benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Serviços */
.lp1-services {
    padding: 80px 0;
    background: white;
}

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

.lp1-service-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lp1-service-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.lp1-featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.lp1-service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.lp1-service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.lp1-service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #25d366;
}

.lp1-btn-secondary {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e !important;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lp1-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    color: #1a1a2e !important;
}

.lp1-cta-center {
    text-align: center;
}

/* Depoimentos */
.lp1-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.lp1-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.lp1-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: #ffd700;
    font-family: serif;
}

.lp1-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.lp1-testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.lp1-testimonial-author {
    font-weight: 600;
    color: #1a1a2e;
}

/* Seção de Urgência */
.lp1-urgency {
    padding: 60px 0;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    text-align: center;
}

.lp1-urgency h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lp1-urgency p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.lp1-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.lp1-countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.lp1-countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.lp1-countdown-item label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.lp1-btn-urgent {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e !important;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.lp1-btn-urgent:hover {
    transform: scale(1.05);
    color: #1a1a2e !important;
}

/* Sobre */
.lp1-about {
    padding: 80px 0;
    background: white;
}

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

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

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

.lp1-credentials {
    margin-top: 2rem;
}

.lp1-credential {
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.lp1-about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.lp1-about-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.lp1-about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.lp1-about-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* CTA Final */
.lp1-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
}

.lp1-final-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.lp1-final-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.lp1-guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #25d366;
}

.lp1-guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.lp1-guarantee-badge i {
    color: #25d366;
    font-size: 1.5rem;
}

.lp1-guarantee-badge span {
    color: #25d366;
    font-weight: 600;
    font-size: 1.1rem;
}

.lp1-btn-final {
    display: inline-block;
    background: linear-gradient(45deg, #25d366, #20ba5a);
    color: white !important;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 2rem 0;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); }
    to { box-shadow: 0 0 30px rgba(37, 211, 102, 0.8); }
}

.lp1-btn-final:hover {
    transform: translateY(-3px);
    color: white !important;
}

.lp1-btn-final i {
    margin-right: 10px;
    font-size: 1.6rem;
}

.lp1-contact-info {
    margin-top: 2rem;
    opacity: 0.8;
}

.lp1-contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.lp1-contact-info i {
    color: #ffd700;
    margin-right: 10px;
}

/* WhatsApp Flutuante */
.lp1-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white !important;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.lp1-whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.05);
    color: white !important;
}

.lp1-whatsapp-float i {
    font-size: 1.5rem;
}

.lp1-whatsapp-text {
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .lp1-headline {
        font-size: 2.5rem;
    }
    
    .lp1-subheadline {
        font-size: 1.2rem;
    }
    
    .lp1-video-container {
        max-width: 90%;
    }
    
    .lp1-btn-primary {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .lp1-section-title {
        font-size: 2.2rem;
    }
    
    .lp1-benefits-grid,
    .lp1-services-grid,
    .lp1-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .lp1-about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lp1-countdown {
        gap: 1rem;
    }
    
    .lp1-countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .lp1-countdown-item span {
        font-size: 1.5rem;
    }
    
    .lp1-whatsapp-text {
        display: none;
    }
    
    .lp1-whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

/* Animações de entrada */
.lp1-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.lp1-fade-in.lp1-visible {
    opacity: 1;
    transform: translateY(0);
}