/* Estilos específicos de la página Live Products */

/* Hero Section */
.live-products-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/live_products/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-products-hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.live-products-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.live-products-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Start Solving Section */
.start-solving-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.start-solving-container {
    max-width: 1400px;
    margin: 0 auto;
}

.start-solving-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1rem;
}

.start-solving-intro {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.start-solving-content {
    display: flex;
    justify-content: center;
}

.start-solving-card {
    background-color: #1a1a2e;
    padding: 3rem;
    padding-top: 1rem;
    border-radius: 12px;
    text-align: left;
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: flex-end;
    min-height: 450px;
}

.start-solving-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    position: absolute;
    top: -50px;
    left: -50px;
    z-index: 3;
    background-color: #ffffff;
    padding: 1rem;
}

.start-solving-card-inner {
    flex: 1;
    max-width: 50%;
    z-index: 2;
    margin-top: -2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-solving-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.start-solving-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.start-solving-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.start-solving-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.start-solving-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: white;
    color: #1a1a2e;
}

.start-solving-btn:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.start-solving-mockup {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.start-solving-mockup .mockup-image {
    width: auto;
    height: auto;
    max-height: 516px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .live-products-hero-section {
        min-height: 500px;
    }
    
    .live-products-hero-title {
        font-size: 2rem;
    }
    
    .live-products-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .start-solving-section {
        padding: 3rem 1.5rem;
    }
    
    .start-solving-title {
        font-size: 2rem;
    }
    
    .start-solving-intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .start-solving-card {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .start-solving-logo {
        width: 120px;
        height: 120px;
        top: -40px;
        left: -40px;
    }
    
    .start-solving-card-inner {
        max-width: 100%;
        margin-top: 0;
    }
    
    .start-solving-mockup {
        position: relative;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }
    
    .start-solving-mockup .mockup-image {
        max-height: 300px;
    }
}

