/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #000;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Seções */
.section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Seção Gateway */
#gateway-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.gateway-logo {
    max-width: 300px;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Botões WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::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;
}

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

.gateway-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.gateway-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Seção Esquilo */
#esquilo-section {
    background: linear-gradient(135deg, #d2691e 0%, #ff8c00 50%, #ffa500 100%);
    color: white;
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.game-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.game-text {
    padding: 2rem;
}

.game-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.esquilo-btn {
    background: linear-gradient(45deg, #8b4513, #d2691e);
    color: white;
}

.esquilo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4);
}

.esquilo-img {
    max-width: 80%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

/* Seção Raspadinha */
#raspadinha-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
}

.raspadinha-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.raspadinha-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(118, 75, 162, 0.4);
}

.raspadinha-img {
    max-width: 80%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Animações de escala para as imagens */
.scale-up {
    transform: scale(1.2);
}

.scale-down {
    transform: scale(0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        min-height: 100vh;
        height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .game-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .game-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .game-content.reverse .game-image {
        order: -1;
    }
    
    .game-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .game-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .gateway-logo {
        max-width: 220px;
        margin-bottom: 1rem;
    }
    
    .whatsapp-btn {
        padding: 14px 28px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .game-text {
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .content {
        text-align: center;
        max-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
  
  	.raspadinha-img {
	    max-width: 50%;
	    height: auto;
	    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
	    border-radius: 20px;
	}
  
  	.esquilo-img {
	    max-width: 80%;
	    height: auto;
	    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
	}
    
    /* Ajustes específicos para telas muito pequenas */
    @media (max-width: 480px) {
        .container {
            padding: 0 10px;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }
        
        .main-title {
            font-size: 1.8rem;
            line-height: 1.1;
        }
        
        .subtitle {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .game-title {
            font-size: 1.6rem;
        }
        
        .game-description {
            font-size: 0.9rem;
        }
        
        .gateway-logo {
            max-width: 180px;
        }
        
        .game-text {
            padding: 0.5rem;
        }
        
        .whatsapp-btn {
            padding: 12px 24px;
            font-size: 0.9rem;
        }
        
        .scroll-indicator {
            bottom: 0.5rem;
        }
        
        .scroll-text {
            font-size: 0.8rem;
        }
      
      	.raspadinha-img {
		    max-width: 50%;
		    height: auto;
		    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
		    border-radius: 20px;
		}
  	
  		.esquilo-img {
		    max-width: 80%;
		    height: auto;
		    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
		}
    }
    
    /* Ajustes para altura de tela pequena */
    @media (max-height: 600px) {
        .container {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        
        .logo-container {
            margin-bottom: 1rem;
        }
        
        .main-title {
            margin-bottom: 1rem;
        }
        
        .subtitle {
            margin-bottom: 1.5rem;
        }
        
        .scroll-indicator {
            bottom: 0.5rem;
        }
      
      	.raspadinha-img {
		    max-width: 50%;
		    height: auto;
		    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
		    border-radius: 20px;
		}
  	
  		.esquilo-img {
		    max-width: 80%;
		    height: auto;
		    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
		}
    }
}

/* Efeitos de transição suaves */
.section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section.fade-out {
    opacity: 0;
    transform: translateY(-50px);
}

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

/* Melhorias visuais */
.whatsapp-btn svg {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Gradientes de fundo animados */
#gateway-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

#esquilo-section {
    background: linear-gradient(135deg, #d2691e 0%, #ff8c00 50%, #ffa500 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

#raspadinha-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}