/* ===== Contenedor general ===== */
.tabs-lvs2-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    max-width: 100%;
}

/* ===== Columna de botones ===== */
.tabs-lvs2-buttons-container {
    flex: 1;
    max-width: 100%;
}

/* Título grupo de pestañas (blanco porque la barra es oscura) */
.tabs-lvs2-title {
   /* font-size: 25px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: left;*/
	display:none;
}

/* Wrapper botones */
.tabs-lvs2-buttons-wrapper {
    display: table;
}

/* ===== Botones ===== */
.tabs-lvs2-button {
    background: transparent;
    font-family: Poppins, sans-serif;
    color: #fff; /* texto blanco sobre fondo oscuro */
    border: 1px solid #fff; /* borde blanco para contraste */
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bolder;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
    margin: 10px;
}

/* Hover (usa color de tabs del Bridge) */
.tabs-lvs2-button:hover {
    background: #fff;
    color: var(--lvs2-tabs-text, #0058cc);
    border-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Activo (mismo esquema que hover) */
.tabs-lvs2-button.active {
    background: #fff;
    /*color: var(--lvs2-tabs-text, #119cd6);*/
	color:  #119cd6;
    border-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===== Contenido ===== */
.tabs-lvs2-content-container {
    margin-top: 2%;
    flex: 2;
    max-width: 25%;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--lvs2-tabs-border, #dddddd);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Título del contenido: color de texto de Tabs */
.tabs-lvs2-content-title {
    font-size: 25px;
    color: var(--lvs2-tabs-text, #0044cc);
    margin-bottom: 15px;
    font-weight: bold;
}

/* Paneles */
.tabs-lvs2-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.tabs-lvs2-content.active {
    display: block;
}

/* Botón dentro del contenido: usa colores de Tabs */
.tabs-lvs2-content a.button {
    display: inline-block;
    background: var(--lvs2-tabs-text, #0058cc);
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.tabs-lvs2-content a.button:hover {
    background: var(--lvs2-tabs-hover, #002266);
}

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .tabs-lvs2-container {
        flex-direction: column;
        gap: 20px;
    }
    .tabs-lvs2-buttons-container,
    .tabs-lvs2-content-container {
        max-width: 100%;
        min-width: 100%;
    }
    .tabs-lvs2-buttons-wrapper {
        /* si en móvil quieres columna única */
        /* display: grid; */
        /* grid-template-columns: 1fr; */
    }
}

/* ===== Botón “Saber más” (usa esquema de Tabs) ===== */
a .saber-mas-button {
    display: inline-block;
    background: var(--lvs2-tabs-text, #0058cc);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.saber-mas-button:hover {
    background: var(--lvs2-tabs-hover, #002266);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Si el enlace envuelve al botón, evita heredar estilos raros */
.saber-mas-button:hover a {
    background: var(--lvs2-tabs-hover, #002266);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== Titulares y cuerpo ===== */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--lvs2-tabs-text, #0058cc);
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .section-title { font-size: 18px; }
}
.section-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}
