:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --whatsapp-color: #25D366;
    --call-color: #4CC9F0;
    --website-color: #7209B7;
    --instagram-color: #C13584;
    --dark-bg: #2a2d3a;
    --light-text: #f8f9fa;
    --dark-text: #212529;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--dark-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo img {
    width: 150%;
    max-width: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
    background: linear-gradient(to right, #4361ee, #7209B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.1rem;
    color: #6c757d;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.action-button {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 1;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.button-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    z-index: 2;
    transition: var(--transition);
}

.action-button:hover .button-icon {
    transform: scale(1.1);
}

.button-text {
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
    transition: var(--transition);
}

.action-button:hover .button-bg {
    opacity: 0.6;
    transform: scale(1.05);
}

.whatsapp {
    background-color: var(--whatsapp-color);
}

/* .whatsapp .button-bg {
    background-image: url('https://images.unsplash.com/photo-1614680376573-df3480f0c6ff?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
} */

.call {
    background-color: var(--call-color);
}

/* .call .button-bg {
    background-image: url('https://images.unsplash.com/photo-1583394838336-acd977736f90?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1148&q=80');
} */

.website {
    background-color: var(--website-color);
}

/* .website .button-bg {
    background-image: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
} */

.instagram {
    background-color: var(--instagram-color);
}

/* .instagram .button-bg {
    background-image: url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
} */

footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .button-grid {
        grid-template-columns: 1fr;
    }
    
    .action-button {
        height: 150px;
    }
}