* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #192A48 0%, #2C65AE 50%, #192A48 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #333;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 40px;
    height: 40px;
    left: 60%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 30%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.8;
    }
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 18px;
    max-width: 650px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: slideUp 1s ease-out;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    margin-bottom: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.company-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(25, 42, 72, 0.1));
}



.message-section {
    margin-bottom: 0;
    padding-bottom: 4px;
}

.main-title {
    font-size: 1.55rem;
    font-weight: 600;
    color: #192A48;
    margin-bottom: 10px;
    line-height: 1.2;
}

.description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}



.loading-section {
    margin-bottom: 0;
    padding: 6px 0;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cleaning-animation {
    position: relative;
    width: 200px;
    height: 6px;
    margin-bottom: 12px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.cleaning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(44, 101, 174, 0.3) 20%, 
        #2C65AE 50%, 
        rgba(44, 101, 174, 0.3) 80%, 
        transparent 100%);
    border-radius: 3px;
    animation: cleanSweep 2.5s ease-in-out infinite;
}

.cleaning-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: linear-gradient(45deg, #2C65AE, #192A48);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(44, 101, 174, 0.6);
}

.cleaning-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 30%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(255, 255, 255, 0.8) 70%, 
        transparent 100%);
    border-radius: 3px;
}

@keyframes cleanSweep {
    0% {
        left: -40px;
    }
    70% {
        left: 200px;
    }
    100% {
        left: 200px;
    }
}

.clean-trail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #2C65AE, #192A48);
    border-radius: 3px;
    width: 0;
    animation: trailGrow 2.5s ease-in-out infinite;
}

@keyframes trailGrow {
    0% {
        width: 0;
    }
    70% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}



.loading-text {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.whatsapp-section {
    margin-bottom: 0;
    padding: 18px;
    background: linear-gradient(135deg, #192A48 0%, #2C65AE 100%);
    border-radius: 15px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.maintenance-info {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.maintenance-info i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    display: block;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-description {
    font-size: 0.975rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 420px;
    margin: 0 auto;
    padding: 8px 0;
}

.whatsapp-container {
    position: relative;
    z-index: 2;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #25D366;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    min-width: 210px;
    text-align: left;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.whatsapp-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #128C7E;
}

.whatsapp-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.whatsapp-icon-container i {
    font-size: 1.2rem;
}

.whatsapp-action {
    font-size: 0.95rem;
    font-weight: 600;
    color: #192A48;
}

.social-section {
    margin-bottom: 0;
    padding-top: 4px;
}

.social-title {
    font-size: 0.9rem;
    color: #192A48;
    margin-bottom: 10px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 1rem;
}

.instagram {
    color: #E4405F;
}

.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.facebook {
    color: #1877F2;
}

.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.footer {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
}

.footer p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@media (min-width: 1200px) and (max-height: 800px) {
    .content {
        padding: 20px;
        max-width: 500px;
    }
    
    .company-logo {
        max-width: 180px;
        margin-bottom: 10px;
    }
    
    .main-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .whatsapp-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .social-section {
        margin-bottom: 15px;
    }
    
    .footer {
        padding-top: 10px;
    }
}

@media (max-width: 1200px) {
    .content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 25px 18px;
        margin: 15px;
        max-width: 95%;
        gap: 18px;
    }

    .company-logo {
        max-width: 200px;
        margin-bottom: 10px;
    }

    .main-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .description {
        font-size: 1rem;
    }

    .loading-container {
        gap: 15px;
    }

    .cleaning-animation {
        width: 220px;
        height: 7px;
        margin-bottom: 15px;
    }

    @keyframes cleanSweep {
        0% {
            left: -40px;
        }
        70% {
            left: 220px;
        }
        100% {
            left: 220px;
        }
    }



    .loading-text {
        font-size: 0.85rem;
    }

    .whatsapp-section {
        padding: 18px 15px;
    }

    .maintenance-info {
        margin-bottom: 15px;
    }

    .maintenance-info i {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .contact-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
        gap: 8px;
    }

    .contact-description {
        font-size: 1rem;
        max-width: 450px;
    }

    .whatsapp-btn {
        padding: 12px 18px;
        width: 70%;
        max-width: 300px;
        gap: 12px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .whatsapp-icon-container {
        width: 40px;
        height: 40px;
    }

    .whatsapp-icon-container i {
        font-size: 1.4rem;
    }

    .whatsapp-action {
        font-size: 1rem;
    }

    .social-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .social-icons {
        gap: 18px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 18px 12px;
        margin: 10px;
        gap: 15px;
    }

    .company-logo {
        max-width: 160px;
    }

    .main-title {
        font-size: 1.4rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .whatsapp-section {
        padding: 15px 12px;
    }

    .contact-description {
        font-size: 0.95rem;
        max-width: 380px;
    }

    .whatsapp-btn {
        padding: 12px 20px;
        width: 85%;
        max-width: 280px;
        gap: 10px;
        flex-direction: row;
        text-align: left;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .whatsapp-icon-container {
        width: 35px;
        height: 35px;
    }

    .whatsapp-icon-container i {
        font-size: 1.2rem;
    }

    .whatsapp-action {
        font-size: 0.9rem;
    }

    .social-icons {
        gap: 12px;
    }
}

@media (max-width: 320px) {
    .content {
        padding: 15px 10px;
        margin: 5px;
    }



    .main-title {
        font-size: 1.3rem;
    }

    .company-logo {
        max-width: 180px;
    }

    .whatsapp-section {
        padding: 15px 10px;
    }

    .maintenance-info i {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .contact-title {
        font-size: 1.2rem;
    }

    .contact-description {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 350px;
    }

    .whatsapp-btn {
        padding: 12px 15px;
        width: 90%;
        max-width: 260px;
        gap: 8px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .whatsapp-icon-container {
        width: 35px;
        height: 35px;
    }

    .whatsapp-icon-container i {
        font-size: 1.2rem;
    }

    .whatsapp-action {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon i {
        font-size: 1rem;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .content {
        padding: 20px;
        margin: 10px auto;
    }

    .company-logo {
        max-width: 220px;
        margin-bottom: 15px;
    }

    .message-section {
        margin-bottom: 25px;
    }

    .loading-section {
        margin-bottom: 25px;
    }

    .whatsapp-section {
        margin-bottom: 25px;
        padding: 15px;
    }

    .social-section {
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) and (max-height: 800px) {
    .content {
        padding: 12px;
        gap: 10px;
        max-width: 600px;
    }

    .company-logo {
        max-width: 150px;
        margin-bottom: 5px;
    }

    .main-title {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }

    .description {
        font-size: 0.9rem;
    }

    .cleaning-animation {
        width: 180px;
        height: 5px;
        margin-bottom: 8px;
    }

    @keyframes cleanSweep {
        0% {
            left: -40px;
        }
        70% {
            left: 180px;
        }
        100% {
            left: 180px;
        }
    }

    .loading-text {
        font-size: 0.75rem;
    }

    .whatsapp-section {
        padding: 12px;
    }

    .maintenance-info {
        margin-bottom: 8px;
    }

    .maintenance-info i {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .contact-title {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .contact-description {
        font-size: 0.85rem;
        max-width: 380px;
    }

    .whatsapp-btn {
        padding: 8px 12px;
        width: 60%;
        max-width: 220px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .whatsapp-icon-container {
        width: 30px;
        height: 30px;
    }

    .whatsapp-icon-container i {
        font-size: 1rem;
    }

    .whatsapp-action {
        font-size: 0.85rem;
    }

    .social-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .social-icon i {
        font-size: 0.9rem;
    }

    .footer {
        font-size: 0.65rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }
} 