* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a4e 0%, #2d1b69 20%, #6b2d7b 40%, #9c3d8b 60%, #c94d9a 80%, #d65da8 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    color: #fff;
    overflow-x: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efeito Matrix */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

/* Partículas flutuantes */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

.particle:nth-child(odd) {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    background: rgba(201, 77, 154, 0.5);
    box-shadow: 0 0 10px rgba(201, 77, 154, 0.5);
}

.particle:nth-child(5n) {
    width: 5px;
    height: 5px;
    background: rgba(107, 45, 123, 0.6);
    box-shadow: 0 0 8px rgba(107, 45, 123, 0.4);
}

/* Glow lines decorativas */
.glow-line {
    position: fixed;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(201, 77, 154, 0.6), transparent);
    animation: glowMove 8s linear infinite;
    z-index: 0;
}

.glow-line:nth-child(1) { left: 10%; animation-delay: 0s; }
.glow-line:nth-child(2) { left: 30%; animation-delay: 2s; }
.glow-line:nth-child(3) { left: 50%; animation-delay: 4s; }
.glow-line:nth-child(4) { left: 70%; animation-delay: 6s; }
.glow-line:nth-child(5) { left: 90%; animation-delay: 1s; }

@keyframes glowMove {
    0% { top: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

/* Badge de typing */
.typing-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.logo-full {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
    cursor: pointer;
}

.logo-full:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 15px 40px rgba(201, 77, 154, 0.4));
}

.hero-text {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.3s both;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    width: 100%;
    line-height: 1.7;
    text-align: center;
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Botão WhatsApp com efeito */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Cards com glassmorphism */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 14px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-section {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.9s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.social-link span {
    position: relative;
    z-index: 1;
}

/* WhatsApp flutuante com tooltip */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float::before {
    content: 'Fale conosco!';
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 70px;
    border: 8px solid transparent;
    border-left-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
}

/* Seção de estatísticas */
.stats-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding: 30px 40px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 1s ease 1s both;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline;
}

.stat-item .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
    .stats-section {
        flex-direction: column;
        gap: 20px;
        padding: 25px 30px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }
}

.footer {
    margin-top: 60px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease 1.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .logo-full {
        max-width: 300px;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}
