/* Contenedor principal */
.container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Título principal */
.home-view h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Vista de sección */
.seccion-view {
    display: none;
}

/* Header de sección */
.seccion-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    padding: 8rem 3rem 4rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 3rem;
    position: relative;
}

.seccion-header h1 {
    font-size: 3.5rem;
    margin: 0 0 1.5rem;
    color: #FDB813;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(253, 184, 19, 0.3);
}

.seccion-header p {
    font-size: 1.5rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Botón de volver */
.back-button {
    background: rgba(253, 184, 19, 0.25);
    color: #FDB813;
    border: 2px solid rgba(253, 184, 19, 0.4);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 101;
}

.back-button:hover {
    background: rgba(253, 184, 19, 0.4);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(253, 184, 19, 0.5);
}
