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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto 30px auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.descripcion {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    font-weight: bold;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.marca {
    font-size: 1.15em;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.botones {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.boton-tienda {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 14px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.boton-tienda:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    background: #FFC700;
}

.boton-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.boton-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    background: #1fb855;
}

/* Footer */
footer {
    background: rgba(0,0,0,0.15);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    width: 100%;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
    
    .descripcion {
        font-size: 1em;
    }
    
    .marca {
        font-size: 1em;
    }
    
    .boton-compra {
        padding: 12px 35px;
        font-size: 1em;
    }
}
