.elementor-10 .elementor-element.elementor-element-4643a1a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-10 .elementor-element.elementor-element-81f0bb5{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-81f0bb5 *//* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1E73BE;
    --dark-blue: #155A8A;
    --light-blue: #E8F4FD;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F5F7FA;
    --white: #FFFFFF;
    --success-green: #25D366;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F4FD 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container principal */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content {
    max-width: 800px;
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px var(--shadow-lg);
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Brand/Logo */
.brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 115, 190, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

/* Main message */
.main-message {
    text-align: center;
    margin-bottom: 3rem;
}

.icon-wrapper {
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.maintenance-icon {
    filter: drop-shadow(0 4px 12px rgba(30, 115, 190, 0.2));
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats section */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0;
    margin: 2.5rem 0;
    background: var(--light-blue);
    border-radius: 16px;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
}

/* Contact section */
.contact-section {
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-light);
    margin-top: 2rem;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--success-green) 0%, #20BA5A 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    margin-bottom: 1.5rem;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
    transform: translateY(-1px);
}

.contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.contact-info strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.footer-tagline {
    font-weight: 600;
    color: var(--text-gray);
}

/* Background decoration */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 115, 190, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-circle svg {
        width: 48px;
        height: 48px;
    }

    .title {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .whatsapp-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        padding: 1rem;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Print styles */
@media print {
    .bg-decoration {
        display: none;
    }

    .content {
        box-shadow: none;
    }
}/* End custom CSS */