* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f8f8f8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: #7a1f4b;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 40px;
    text-align: center;
}

.section {
    padding: 60px 0;
    background: #fff;
}

.section.dark {
    background: #eee;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 40px;
    align-items: center;
}

.btn {
    display: inline-block;
    background: #7a1f4b;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.footer {
    background: #222;
    color: #bbb;
    padding: 30px 0;
    text-align: center;
}

.producto-compra {
    background: #f3f3f3;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.logo-link {
    color: #fff;
    text-decoration: none;
}

.logo-link:hover {
    text-decoration: underline;
}

