/* Ágil Descartáveis - Design Original da Foto */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Top Line */
.top-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6A0DAD 0%, #8B5CF6 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
}

.content-container {
    max-width: 800px;
    width: 100%;
}

/* Main Heading */
.main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

/* Description */
.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-block;
    background: linear-gradient(135deg, #2C2C4A 0%, #1A1A2E 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .main-content {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 30px 10px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-heading {
    animation: fadeInUp 1s ease-out;
}

.description {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.whatsapp-button {
    animation: fadeInUp 1s ease-out 0.4s both;
}