@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary: #6C63FF;
    --secondary: #FF6584;
    --accent: #42C0FB;
    --light: #F8F9FA;
    --dark: #343A40;
}

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

.comic-font {
    font-family: 'Comic Neue', cursive;
}

.hero-gradient {
    background: linear-gradient(116deg, #d2db4d 0%, #42C0FB 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.expression-card {
    transition: all 0.3s ease;
    perspective: 1000px;
}

.expression-card:hover {
    transform: scale(1.05);
}

.expression-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.expression-card:hover .expression-card-inner {
    transform: rotateY(180deg);
}

.expression-card-front,
.expression-card-back {
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

.expression-card-back {
    transform: rotateY(180deg);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

.app-screen {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 2rem;
    border: 8px solid white;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

;

/* Adicione isso na seção de estilos */
#mobile-menu {
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
}

/* Adicione isso para suavizar a transição */
.transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.translate-x-full {
    transform: translateX(100%);
}

/* Adicione isso na seção de estilos */
.header-icon i {
    transition: all 0.5s ease-in-out;
}

/* Animação de pulsação para chamar atenção */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.header-icon:hover i {
    animation: pulse 1s infinite;
}


