@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --bg-color: #F5B4D2;
    --accent-gradient: linear-gradient(135deg, #F5B4D2 0%, #ef94be 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--accent-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    animation: fadeIn 1s ease-out;
}

a {
    display: block;
    line-height: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

a:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
}

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

/* Responsividad para móviles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    a {
        border-radius: 12px;
    }
}
