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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #1a1a1a;
}

.container {
    width: 100%;
    max-width: 42rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.7s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    width: 12rem;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Tagline */
.tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
    max-width: 36rem;
    padding: 0 1rem;
    line-height: 1.5;
}

/* Links Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 28rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
}

.social-link.instagram:hover {
    background: rgba(253, 108, 41, 0.15);
}

.social-link.website:hover {
    background: rgba(14, 165, 233, 0.15);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.social-link:hover .icon {
    transform: scale(1.1);
}

.link-text {
    font-size: 1rem;
}

/* Footer */
.footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .main-content {
        gap: 1.5rem;
    }
    
    .logo-container {
        width: 14rem;
        height: 14rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .links-container {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-link {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .link-text {
        font-size: 1.125rem;
    }
    
    .footer {
        margin-top: 2rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        width: 16rem;
        height: 16rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
}
