* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.seccion-campana {
    background: #f2f2f2;
    padding: 80px 20px;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 20px;
    margin-top: 30px;
}

.titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.descripcion {
    max-width: 900px;
    font-size: 1rem;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* GRID COMPARACIÓN */
.grid-comparacion {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.card-campana {
    flex: 1;
    background: #e9e9e9;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    min-width: 280px;
}

.pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
    background: white;
}

.pill.activo {
    border: 1px solid #000;
    font-weight: 600;
}

.img-placeholder {
    background: #dcdcdc;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

/* Rutas de imágenes para cada placeholder grande */
.grid-comparacion .card-campana:nth-child(1) .img-placeholder.grande {
    background-image: url('../../repos/images/pg1_1.png');
}

.grid-comparacion .card-campana:nth-child(2) .img-placeholder.grande {
    background-image: url('../../repos/images/pg1_2.png');
}

.img-placeholder.grande {
    height: 260px;
    margin-bottom: 20px;
}

.card-texto {
    background: #1e1e1e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bloque-inferior {
    margin-top: 40px;
}

.img-placeholder.fondo {
    height: 720px;
    position: relative;
    background: #ccc;
    background-image: url('../../repos/images/pg1_3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
}

.etiqueta {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    max-width: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.etiqueta.izquierda {
    bottom: 30px;
    left: 30px;
}

.etiqueta.derecha {
    top: 30px;
    right: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid-comparacion {
        flex-direction: column;
    }

    .etiqueta {
        font-size: 0.75rem;
        max-width: 200px;
    }
}