body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.bg{
	background-image: url('../images/background.jpg');
}

a{
	color:#8B4513!important;
}
.chocomigo-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #f0f8ff;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    width: 2880px;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    animation: moveBackground 5s linear forwards;
    left: 0;
}

.nuvens-animation {
    position: absolute;
    width: 92%;
    height: 30%;
    background-image: url('../images/nuvens.png');
    background-repeat: repeat-x;
    background-size: contain;
    top: 10%;
    animation: moveNuvens 20s linear 5s forwards;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

/* Logo no topo centralizado */
.logo {
    max-width: 400px;
    width: 90%;
    margin: 2rem auto 0;
    opacity: 0;
    animation: fadeIn 2s ease-in 1s forwards;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Container para coelho e cesta na parte inferior */
.bottom-container {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.coelho {
    position: relative;
    max-width: 350px;
    width: 100%;
    z-index: 1;
    opacity: 0;
    animation: 
        fadeIn 0.5s ease-in 2s forwards,
        raiseRabbit 2s ease-in-out 2s forwards;
    margin-bottom: -270px;
    transform-origin: bottom center;
}

.cesta {
    max-width: 320px;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 2s ease-in 2s forwards;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
	margin-bottom:-80px;
}

/*.bg-primary{background-color: #8B4513;}*/



button.btn-brow, a.btn-brow{
	background-color: #8B4513;
	border:1px solid #8B4513;
	border-radius:25px;
	color:#fff!important;
	}
	
button.btn-brow:hover, a.btn-brow:hover {
    background-color: #A0522D;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	border:1px solid #8B4513;
}
		

.btn-primary{
	background-color: #8B4513;
	border:1px solid #8B4513;
	border-radius:25px;
	}
	
.btn-primary:hover {
    background-color: #A0522D;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	border:1px solid #8B4513;
}
	

/* Botão de participação */
.btn-lg {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 250px;
    max-width: 80%;
    opacity: 0;
    animation: fadeIn 2s ease-in 3s forwards;
    z-index: 9999;
    padding: 12px 24px;
    font-size: 1.25rem;
    border-radius: 50px;
    background-color: #8B4513;
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-lg:hover {
    background-color: #A0522D;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.fade-in {
    opacity: 0;
}

/* Animações */
@keyframes moveBackground {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(1920px - 2880px)); }
}

@keyframes moveNuvens {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes raiseRabbit {
    0% { 
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    100% { 
        transform: translateY(-40px) rotate(-10deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
        margin-top: 1.5rem;
		z-index:9999999999;
    }
    
    .bottom-container {
        bottom: 100px;
    }
    
	.coelho{max-width: 300px;}

    
    .btn-lg {
        bottom: 100px;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
	.logo{z-index:9999999999;}
	
	
    .bottom-container {
        bottom: 80px;
    }
    .coelho{max-width: 300px;}    
    .btn-lg {
        bottom: 100px;
        font-size: 1rem;
        width: 200px;
    }
}

/* Ícone Flutuante Personalizado */
        .info-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #6F4E37;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            font-size: 28px;
            transition: all 0.3s;
        }
        
        .info-float:hover {
            background-color: #5D3B2A;
            transform: scale(1.1);
        }
        
        
        .choco-icon {
            font-size: 2.5rem;
            color: #6F4E37;
            margin-bottom: 1rem;
        }
		
		
		 /* Botão personalizado */
		.btn-choco {
			background-color: #6F4E37;
			color: white;
			padding: 8px 25px;
			border-radius: 50px;
			border: none;
			transition: all 0.3s;
		}
		
		.btn-choco:hover {
			background-color: #5D3B2A;
			transform: translateY(-2px);
			box-shadow: 0 4px 8px rgba(111, 78, 55, 0.3);
		}