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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #ffa500;
    --accent-color: #ff4757;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --bg-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ff4757 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.maintenance-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 25px 30px 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
}

/* Animation Container */
.animation-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
    position: relative;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
}

.title {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Progress Section */
.progress-section {
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: var(--bg-gradient);
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.info-card {
    background: white;
    padding: 20px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.email-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn span {
    font-size: 1.2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 107, 107, 0.1);
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.2);
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

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

@keyframes progressAnimation {
    0%, 100% {
        width: 60%;
    }
    50% {
        width: 70%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px 20px 25px;
        border-radius: 20px;
    }

    .animation-container {
        width: 150px;
        height: 150px;
        margin-bottom: 8px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px 0;
    }

    .info-card {
        padding: 15px 12px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .progress-section {
        margin: 15px 0;
    }

    .contact-section {
        margin: 15px 0;
    }

    .social-links {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 15px 15px 20px;
    }

    .title {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .animation-container {
        width: 120px;
        height: 120px;
        margin-bottom: 5px;
    }

    .info-card {
        padding: 12px 10px;
    }

    .info-card .icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .info-card h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .info-card p {
        font-size: 0.75rem;
    }

    .progress-section {
        margin: 12px 0;
    }

    .contact-section {
        margin: 12px 0;
    }

    .contact-text {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .social-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}

