.choice-section {
    position: relative;
    overflow: hidden;
}

.choice-brand-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%), 
                url('../../img/logo-marketbox-favicon.png') no-repeat center center;
    background-size: contain;
    filter: blur(2px);
}

.choice-brand-bg img {
    display: none;
}

.choice-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem 0;
}

.choice-header {
    text-align: center;
    margin-bottom: 3rem;
}

.choice-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.choice-card {
    text-align: center;
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-brand-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.05;
    z-index: 0;
}

.choice-card .icon {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--primary);
}

.choice-card h2 {
    margin-bottom: 1rem;
}

.choice-card p {
    color: var(--muted-color);
    margin-bottom: 2rem;
}

.explore-card .icon {
    color: var(--secondary);
}

/* Estilos para que los enlaces parezcan botones */
.choice-card footer {
    margin-top: auto;
    padding-top: 2rem;
}

.choice-card .button {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.choice-card .button.contrast {
    background-color: #374151; /* Gris oscuro elegante */
    color: #ffffff;
}

.choice-card .button.primary {
    background-color: #3296fa; /* Azul principal */
    color: #ffffff;
}

.choice-card:hover .button.contrast {
    background-color: #1f2937;
}

.choice-card:hover .button.primary {
    background-color: #1e87f0;
}

@media (max-width: 768px) {
    .choice-header h1 {
        font-size: 2rem;
    }
    .choice-card {
        padding: 2rem;
    }
}
