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

body {
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F5EDE5;
    color: #2C1810;
    padding: 24px;
    overflow: hidden;
}

/* Decorative background circles */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    opacity: 0.07;
    background: #BD8A62;
    pointer-events: none;
}

body::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

body::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.container {
    text-align: center;
    max-width: 520px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    width: 180px;
    height: auto;
    margin-bottom: 48px;
    filter: drop-shadow(0 2px 8px rgba(189, 138, 98, 0.15));
}

/* Animated gear icon */
.icon-wrap {
    margin-bottom: 32px;
}

.gear-icon {
    width: 64px;
    height: 64px;
    color: #BD8A62;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Typography */
h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 16px;
    line-height: 1.3;
}

h1 span {
    color: #BD8A62;
}

.subtitle {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #BD8A62, #d4a87c);
    border-radius: 2px;
    margin: 0 auto 40px;
}

/* Contact card */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06);
}

.contact-card p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.link-phone {
    background: #F5EDE5;
    color: #2C1810;
    border: 1px solid rgba(189, 138, 98, 0.2);
}

.link-phone:hover {
    background: #efe3d6;
    border-color: #BD8A62;
}

.link-whatsapp {
    background: #BD8A62;
    color: white;
}

.link-whatsapp:hover {
    background: #9B6B47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(189, 138, 98, 0.3);
}

/* Footer */
.footer {
    margin-top: 48px;
    font-size: 13px;
    color: #9CA3AF;
}

/* Pulse dot */
.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #BD8A62;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #BD8A62;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

/* Responsive */
@media (max-width: 480px) {
    .logo {
        width: 140px;
        margin-bottom: 36px;
    }

    h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 15px;
    }

    .contact-card {
        padding: 24px;
    }
}
