/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    overflow-x: hidden;
}

/* Cores e Backgrounds */
.pelai-bg {
    background-color: #000000;
    color: white;
}

.text-highlight {
    color: #00A859;
    font-weight: 700;
}

.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('images/gramado.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    position: relative;
}

/* Logo na Hero Section */
.logo-hero {
    max-width: 250px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 15px rgba(0, 168, 89, 0.5));
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
}

.logo-container {
    margin-bottom: 30px;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00A859 !important;
}

.contact-link {
    background-color: #00A859;
    border-radius: 30px;
    margin-left: 10px;
}

.contact-link:hover {
    background-color: #008647;
    color: white !important;
}

/* Cards de Recursos */
.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #00A859;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Botões */
.btn-pelai {
    background-color: #00A859;
    border-color: #00A859;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-pelai: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: all 0.6s;
    z-index: -1;
}

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

.btn-pelai:hover {
    background-color: #008647;
    border-color: #008647;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.3);
}

.btn-outline-pelai {
    border-color: #00A859;
    color: #00A859;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-pelai:hover {
    background-color: #00A859;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.3);
}

/* Títulos de Seção */
.section-title {
    font-weight: 800;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #00A859;
}

/* Logo */
.logo-img {
    height: 40px;
    margin-right: 10px;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Nova Seção Como Funciona */
.how-it-works-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.step-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    transition: transform 0.4s, box-shadow 0.4s;
    border-bottom: 4px solid transparent;
}

.step-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 4px solid #00A859;
}

.step-box.active {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 4px solid #00A859;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #00A859;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.3);
}

.step-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.step-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #00A859;
}

.step-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.step-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-top: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #00A859;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 5rem;
    color: rgba(0, 168, 89, 0.1);
    position: absolute;
    top: -40px;
    left: -15px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.testimonial-position {
    color: #777;
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top: 4px solid #00A859;
    position: relative;
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.featured-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #00A859;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 168, 89, 0.3);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #00A859;
    margin-right: 10px;
}

/* Contact Section */
.contact-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #00A859;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
    color: white;
}

.social-icons a:hover {
    background-color: #00A859;
    transform: translateY(-5px);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
    .how-it-works-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-box {
        width: 100%;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-link {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .btn-pelai, .btn-outline-pelai {
        display: block;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mind Connection Section */
.mind-connection-visual {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.connection-circle {
    width: 80px;
    height: 80px;
    background: #00A859;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    z-index: 2;
}

.coach-circle {
    margin-bottom: 40px;
}

.ai-bridge {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,168,89,0.1), rgba(0,168,89,0.2));
    border-radius: 30px;
    margin: 20px 0;
}

.players-circles {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 40px;
}

.player-circle {
    width: 60px;
    height: 60px;
    transform: scale(0.8);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    border: 3px solid #00A859;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.mind-connection-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mind-connection-features .feature-item:hover {
    background: rgba(0,168,89,0.1);
    transform: translateX(10px);
}

.mind-connection-features i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .mind-connection-visual {
        height: 300px;
    }
    
    .players-circles {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .connection-circle {
        width: 60px;
        height: 60px;
    }
}

/* Seletor de Idiomas */
.language-selector .language-flag {
    opacity: 0.6;
    transition: opacity 0.3s;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
}

.language-selector .language-flag img {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector .language-flag.active, 
.language-selector .language-flag:hover {
    opacity: 1;
}

.language-selector .language-flag.active img {
    border-color: rgba(0, 168, 89, 0.7);
    box-shadow: 0 0 4px rgba(0, 168, 89, 0.5);
}

/* Classes para os idiomas */
[data-lang] {
    display: none;
}

[data-lang="pt-br"] {
    display: block;
}

html[lang="en"] [data-lang="en"] {
    display: block;
}

html[lang="en"] [data-lang="pt-br"] {
    display: none;
}

/* Exceção para as bandeiras no seletor de idiomas */
.language-flag[data-lang] {
    display: inline-block !important;
} 