/* --- Estilos para botón Cotizar --- */
.btn-cotizar {
    display: inline-block;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 0.9em 2.5em;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin: 2.2em auto 0 auto;
    cursor: pointer;
    text-align: center;
}
.btn-cotizar:hover,
.btn-cotizar:focus {
    background: #222;
    color: #fff;
    box-shadow: 0 4px 22px rgba(0,0,0,0.10);
}

/* --- Tabs de productos centrados --- */
.tabs-productos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin: 2.5em 0 2em 0;
}
.tab-btn {
    background: #e6e5df;
    border: none;
    outline: none;
    color: #111;
    font-size: 1.06rem;
    font-weight: 550;
    padding: 0.7em 2.2em;
    border-radius: 22px;
    cursor: pointer;
    margin: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.5);
    transition: background 0.2s, color 0.2s;
    min-width: 250px;          /* <-- Ambos botones tendrán el MISMO ancho mínimo */
    text-align: center;        /* <-- El texto siempre centrado */
    box-sizing: border-box;    /* <-- Asegura que padding no aumente el ancho */
}
.tab-btn.active,
.tab-btn:focus {
    background: #111;
    color: #fff;
}

/* --- Sección de imagen grande y subtítulo en secciones posteriores --- */
.img-seccion3 {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 2.2em auto 3.5em auto;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.subtitulo-seccion3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #222;
    margin: 3.5em auto 2em auto;
    letter-spacing: 0.01em;
}

/* --- Solo textos de la izquierda, con fondo igual que los de la derecha, centrados --- */
.seccion3-textos {
    display: flex;
    flex-direction: column;        /* Solo una columna */
    align-items: center;           /* Centra horizontalmente */
    gap: 1.6em;
    margin: 1.2em 0 2.8em 0;
    padding: 0 1vw;
    max-width: 1000px;             /* Limita el ancho igual que la imagen */
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
.seccion3-textos > div {
    width: 100%;
    max-width: 700px;
    min-width: 210px;
    margin: 0 auto;
    align-items: center;
}

/* --- El fondo ahora es #F5F3EE (ejemplo de fondo derecho), ajusta si usabas otro --- */
.seccion3-textos {
    color: #222;
    text-align: left;
    font-size: 1.04rem;
    line-height: 1.55;
    margin-bottom: 1.1em;
    background: #DEDDD6;     /* Color de fondo igual al derecho */
    border-radius: 7px;
    padding: 1.1em 1em;
}

/* --- Lista de bullets personalizada con palomita --- */
.bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0 0;
    text-align: left;
    width: 100%;
}
.bullet-list li {
    position: relative;
    padding-left: 2.1em;
    margin-bottom: 0.9em;
    color: #222;
    font-size: 1.01rem;
    text-align: left; /* Para que el texto quede alineado cerca de la viñeta/palomita */
    display: inline-block;
}

/* --- Viñeta negra con palomita blanca centrada --- */
.bullet-list li:before {
    content: '';
    position: absolute;
    left: 0.1em;
    top: 0.2em;
    width: 1.2em;
    height: 1.2em;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bullet-list li:after {
    content: '✔';
    position: absolute;
    left: 0.6em;
    top: 0.5em;
    font-size: 0.69em;
    color: #fff;
    pointer-events: none;
}

/* --- Sección del botón Cotizar centrado --- */
.cta-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.8em 0 4em 0;
}

/* --- Ajustes responsivos para todo lo anterior --- */
@media (max-width: 900px) {
    .img-seccion3 { max-width: 98vw; }
    .seccion3-textos { flex-direction: column; gap: 2.1em; padding: 0 2vw; }
    .tabs-productos { flex-direction: column; gap: 0.7em; }
}
@media (max-width: 600px) {
    .pregunta-titulo { font-size: 1.09rem; }
    .tab-btn { font-size: 0.99rem; padding: 0.5em 1.2em; }
    .seccion3-textos > div { min-width: 0; max-width: 100%; }
}