#footer, #footer .footer-copyright.footer-copyright-style-2{
    margin-top: 0px !important;
    background-color: #1c1c1c !important;
}/* Animação para highlightScribble1 */

.highlight-scribble-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.highlight-scribble-1 path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawScribble 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes drawScribble {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animação de aparecimento para o elemento com highlightScribble1 */
.appear-animation[data-appear-animation="highlightScribble1"] {
    position: relative;
    display: inline-block;
}

.appear-animation[data-appear-animation="highlightScribble1"] .highlight-scribble-1 {
    opacity: 0;
    animation: fadeInScribble 0.5s ease-in-out forwards;
    animation-delay: 1s;
}

@keyframes fadeInScribble {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn:hover {
    opacity: 0.8;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: #f8f9fa;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    border-radius: 2px;
}

.language-option span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Animação de rotação no sentido horário */
@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating-clockwise {
    animation: rotateClockwise 8s linear infinite;
}

/* Efeito de texto dinâmico com cursor piscando */
.dynamic-text-container {
    display: inline-block;
    position: relative;
}

.dynamic-text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.dynamic-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: currentColor;
    margin-left: 2px;
    margin-bottom: 0.1em;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Animação de digitação */
.typewriter-text {
    overflow: hidden;
    border-right: 2px solid;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-cursor 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-cursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: currentColor;
    }
}

/* Home Wrapper Animation - Similar to Mentrix.ai */
.home-wrapper {
    position: relative;
    overflow: hidden;
    animation: homeWrapperEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.home-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    animation: shimmer 3s infinite;
    z-index: 1;
    pointer-events: none;
}

.home-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 136, 204, 0.05) 0%,
        transparent 70%
    );
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes homeWrapperEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Enhanced container animation */
.home-wrapper .container {
    position: relative;
    z-index: 2;
    animation: containerSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes containerSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating elements animation */
.home-wrapper .floating-element {
    animation: float 6s ease-in-out infinite;
}

.home-wrapper .floating-element:nth-child(2n) {
    animation-delay: -2s;
}

.home-wrapper .floating-element:nth-child(3n) {
    animation-delay: -4s;
}

/* Garantir que a imagem da esfera seja sempre visível */
.home-wrapper img.rotating-clockwise {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    position: relative;
    width: auto !important;
    height: auto !important;
    max-width: 200px !important;
    max-height: 200px !important;
    margin: 20px auto !important;
}

/* Debug: destacar a esfera temporariamente */
.home-wrapper img.rotating-clockwise {
    border: 2px solid #0088cc !important;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.5) !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    66% {
        transform: translateY(-3px) rotate(-0.5deg);
    }
}

/* Animação específica para a esfera - mais suave */
.home-wrapper img.rotating-clockwise.floating-element {
    animation: 
        rotateClockwise 8s linear infinite,
        float 8s ease-in-out infinite;
}

/* Floating particles animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 136, 204, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: -4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: -6s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: -1s;
    animation-duration: 5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Enhanced hover effects */
.home-wrapper:hover .floating-element {
    animation-play-state: paused;
}

.home-wrapper:hover .particle {
    animation-duration: 2s;
}

/* Efeitos de animação para os paths da esfera Mentrix.ai */
.sphere path {
    fill: url(#sphereGradient);
    stroke-width: 1px;
    stroke: rgba(80,80,80,.35);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: pathGlow 3s ease-in-out infinite;
}

/* Animação de brilho nos paths */
@keyframes pathGlow {
    0%, 100% {
        stroke: rgba(80,80,80,.35);
        stroke-width: 1px;
    }
    25% {
        stroke: rgba(120,120,120,.6);
        stroke-width: 1.5px;
    }
    50% {
        stroke: rgba(160,160,160,.8);
        stroke-width: 2px;
    }
    75% {
        stroke: rgba(120,120,120,.6);
        stroke-width: 1.5px;
    }
}

/* Animação escalonada para cada path */
.sphere path:nth-child(1) { animation-delay: 0s; }
.sphere path:nth-child(2) { animation-delay: 0.2s; }
.sphere path:nth-child(3) { animation-delay: 0.4s; }
.sphere path:nth-child(4) { animation-delay: 0.6s; }
.sphere path:nth-child(5) { animation-delay: 0.8s; }
.sphere path:nth-child(6) { animation-delay: 1.0s; }
.sphere path:nth-child(7) { animation-delay: 1.2s; }
.sphere path:nth-child(8) { animation-delay: 1.4s; }
.sphere path:nth-child(9) { animation-delay: 1.6s; }
.sphere path:nth-child(10) { animation-delay: 1.8s; }
.sphere path:nth-child(11) { animation-delay: 2.0s; }
.sphere path:nth-child(12) { animation-delay: 2.2s; }
.sphere path:nth-child(13) { animation-delay: 2.4s; }
.sphere path:nth-child(14) { animation-delay: 2.6s; }
.sphere path:nth-child(15) { animation-delay: 2.8s; }
.sphere path:nth-child(16) { animation-delay: 3.0s; }

/* Efeito de pulsação nos paths */
@keyframes pathPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.sphere path {
    animation: pathGlow 3s ease-in-out infinite, pathPulse 4s ease-in-out infinite;
}

/* Efeito de movimento das linhas */
@keyframes lineFlow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 100;
    }
}

.sphere path {
    stroke-dasharray: 10 5;
    animation: pathGlow 3s ease-in-out infinite, pathPulse 4s ease-in-out infinite, lineFlow 8s linear infinite;
}

/* Efeito de brilho dinâmico */
@keyframes dynamicGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255,255,255,0.3));
    }
    25% {
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.5));
    }
    50% {
        filter: brightness(1.5) drop-shadow(0 0 15px rgba(255,255,255,0.7));
    }
    75% {
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.5));
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255,255,255,0.3));
    }
}

.sphere {
    animation: dynamicGlow 6s ease-in-out infinite;
}

/* Efeito de rotação da esfera */
@keyframes sphereRotate {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(15deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-15deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

.sphere-animation {
    /* animation: sphereRotate 20s linear infinite; */
}

/* Efeito de flutuação */
@keyframes sphereFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

.animation-wrapper {
    animation: sphereFloat 6s ease-in-out infinite;
}

/* Efeito hover interativo - DESABILITADO */
/* .Home__wrapper__7nN6B:hover .sphere path {
    stroke: rgba(255,255,255,.8);
    stroke-width: 2.5px;
    animation-duration: 1s;
}

.Home__wrapper__7nN6B:hover .sphere {
    filter: brightness(1.8) drop-shadow(0 0 25px rgba(255,255,255,0.9));
} */