:root {
    --primary-color: #2c3e50;
    --whatsapp-color: #25D366;
    --text-color: #333;
    --background-color: #f4f6f8;
    --button-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-3px);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.logo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.buttons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.8rem;
    box-shadow: var(--button-shadow);
    backdrop-filter: blur(10px);
}

.button:hover {
    transform: var(--hover-transform);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button i {
    font-size: 1.2rem;
}

.phone-button {
    background-color: var(--primary-color);
    color: white;
}

.whatsapp-button {
    background-color: var(--whatsapp-color);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.address-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
}

.address-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    flex: 1;
}

.address-text span {
    font-weight: 500;
}

.address-text small {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.address-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.address-button:hover i,
.address-button:hover .address-text small {
    color: white;
}

.footer {
    margin-top: 3rem;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

.maintenance-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.maintenance-notice i {
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .logo {
        max-width: 90%;
    }
    
    .buttons-container {
        gap: 1.5rem;
    }
    
    .button {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .button i {
        font-size: 1.4rem;
    }
    
    .whatsapp-button, .phone-button {
        min-height: 80px;
    }

    .address-button {
        min-height: 100px;
        padding: 1.5rem;
    }

    .address-text span {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .address-text small {
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }
    
    .maintenance-notice {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
}