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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.1rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img{
  display:block;           /* evita “gaps” de linha */
  width:40px;
  height:40px;
  border-radius:50%;       /* deixe redondo; remova se quiser quadrado */
  object-fit:cover;        /* preenche sem distorcer */
}

.nav-link {
    font-weight: 500;
    color: #4b5563 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #9333ea !important;
}

.btn-primary {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

.btn-outline-primary {
    border: 2px solid #9333ea;
    color: #9333ea;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #9333ea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 50%, #fef3c7 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(147, 51, 234, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 51, 234, 0.1);
    color: #7c3aed;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #9333ea;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.stars {
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: white;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Game Modes Section */
.game-modes-section {
    background: linear-gradient(180deg, white 0%, #faf5ff 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.game-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: #c084fc;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.15);
    transform: translateY(-5px);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.game-description {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: white;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper.purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.feature-icon-wrapper.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.feature-icon-wrapper.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #faf5ff 0%, #fce7f3 100%);
}

.testimonial-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #c084fc;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.15);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    color: #1f2937;
}

.accordion-button:not(.collapsed) {
    background: #faf5ff;
    color: #9333ea;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #c084fc;
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 50%, #f59e0b 100%);
    padding: 5rem 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .btn-light {
    background: white;
    color: #9333ea;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
}

.logo-circle-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .navbar-brand span {
        font-size: 0.9rem;
    }
}

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

.game-card,
.testimonial-card,
.feature-icon-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

