/* Estilos generales para páginas de técnicas de impresión - Impresos Peña Publicidad */

.ipp-tech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
}

/* Encabezado de técnica */
.ipp-tech-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.ipp-tech-icon-main {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #007BFF11;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipp-tech-icon-main i {
    font-size: 28px;
    color: #007BFF;
}

.ipp-tech-header h1 {
    font-size: 28px;
    margin: 0;
}

.ipp-tech-badge {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #F3F6FF;
    color: #345;
}

/* Layout de página de técnica */
.ipp-tech-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.ipp-tech-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Bloques laterales */
.ipp-tech-panel {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ipp-tech-panel h3 {
    font-size: 18px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ipp-tech-panel h3 i {
    color: #007BFF;
}

.ipp-tech-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.ipp-tech-panel ul li {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.ipp-tech-panel ul li i {
    color: #007BFF;
    margin-top: 3px;
}

/* Galería */
.ipp-tech-gallery {
    margin-top: 25px;
}

.ipp-tech-gallery h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ipp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.ipp-gallery-item {
    position: relative;
    padding-top: 70%;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
}

/* Tabla de comparación */
.ipp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 25px;
}

.ipp-compare-table th,
.ipp-compare-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 10px;
    text-align: left;
}

.ipp-compare-table th {
    background: #F3F6FF;
    font-weight: 600;
}

.ipp-compare-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: #e9f5ff;
    color: #145a8a;
}

@media (max-width: 900px) {
    .ipp-tech-layout {
        grid-template-columns: 1fr;
    }
    .ipp-tech-header {
        align-items: flex-start;
        flex-direction: row;
    }
}
