:root {
    --lila-soft: #f3e5f5;
    --lila-dark: #8e24aa;
    --crema: #fffaf0;
    --accent: #d81b60;
    --text: #4a4a4a;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.welcome-tag {
    color: var(--lila-dark);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text);
    margin: 10px 0 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.about-badges span {
    background: white;
    border: 1px solid var(--lila-soft);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--lila-dark);
    box-shadow: var(--shadow);
}

.about-visual {
    position: relative;
}

.visual-card {
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: rotate(3deg);
}

.setup-img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.floating-sticker {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(-10deg);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-badges {
        justify-content: center;
    }
    .about-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfafc;
    color: var(--text);
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--lila-soft);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.main-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    object-fit: cover;
}

h1 { font-family: 'Playfair Display', serif; color: var(--lila-dark); margin-bottom: 10px; }

.header-nav { margin-top: 20px; display: flex; justify-content: center; gap: 20px; align-items: center; }
.header-nav a { text-decoration: none; color: var(--lila-dark); font-weight: 600; font-size: 0.9rem; }
.btn-anchor { background: white; padding: 8px 15px; border-radius: 20px; box-shadow: var(--shadow); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: -30px auto 60px;
    padding: 0 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover { transform: translateY(-5px); }

.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

#pc-qty{
    border-color:#a25cb5;
    background-color: #a25cb5;
    color: whitesmoke;
    border-radius: 5px;
    padding-top: 2.5px;;
    padding-bottom: 2.5px;
    font-family:Arial, Helvetica, sans-serif;
}

#pc-type{
    border-color:#a25cb5;
    background-color: #a25cb5;
    color: whitesmoke;
    border-radius: 5px;
    padding-top: 2.5px;;
    padding-bottom: 2.5px;
    font-family:Arial, Helvetica, sans-serif;
}

#book-qty{
    border-color:#a25cb5;
    background-color: #a25cb5;
    color: whitesmoke;
    border-radius: 5px;
    padding-top: 2.5px;;
    padding-bottom: 2.5px;
    font-family:Arial, Helvetica, sans-serif;
}

.package-badges { display: flex; gap: 5px; margin-bottom: 10px; }
.package-badges span { background: var(--lila-soft); color: var(--lila-dark); font-size: 0.65rem; padding: 3px 8px; border-radius: 10px; font-weight: 600; }

.price-tag { font-size: 1.4rem; font-weight: 700; color: var(--lila-dark); margin: 10px 0; }
.btn-primary { background: var(--lila-dark); color: white; text-align: center; padding: 12px; border-radius: 15px; text-decoration: none; font-weight: 600; margin-top: auto; }

.bundles-section {
    background-color: var(--crema);
    padding: 80px 20px;
    border-top: 2px dashed var(--lila-soft);
}

.section-intro { text-align: center; margin-bottom: 40px; }
.bundles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

.bundle-card {
    background: white;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(142, 36, 170, 0.08);
    transition: transform 0.3s ease;
}

.bundle-badge { position: absolute; top: 15px; left: 15px; background: var(--accent); color: white; padding: 5px 12px; border-radius: 10px; font-size: 0.7rem; font-weight: 700; }
.bundle-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.bundle-info { padding: 25px; }
.bundle-info ul { list-style: none; margin: 15px 0; font-size: 0.9rem; }
.bundle-info li { margin-bottom: 8px; opacity: 0.8; }

.bundle-price { margin-bottom: 20px; }
.old-price { text-decoration: line-through; opacity: 0.4; font-size: 0.9rem; margin-right: 10px; }
.new-price { font-size: 1.6rem; font-weight: 700; color: var(--lila-dark); }

.btn-bundle { display: block; background: var(--accent); color: white; text-align: center; padding: 15px; border-radius: 15px; text-decoration: none; font-weight: 700; }

/* FOOTER */
footer { text-align: center; padding: 60px; opacity: 0.5; font-size: 0.8rem; }
.dev-tag { font-family: monospace; color: var(--lila-dark); margin-top: 10px; }